Wordpress Theme Generator [Free]

Ramon21

Active Member
149
2024
41
3,150
This simple program generate full wordpress theme structure (Folder & File) then you only copy the html part to file & you get your wordpress theme easy & simple you can convert any html template to wordpress

How to use:

1-Enter your theme name
2-Choose the theme save location

Now all theme structure (Folder & File ) are generate & you just need copy your html template code in the current file like your footer code inside (footer.php).

Download Link (Media Fire)
 
3 comments
what proof?
Post automatically merged:

This source code for all member who have even some small skills in coding just see & if you find any thing bad in this program then banned me & dont let me even create account again on this forum

Download Source Code (Media Fire)

virustotal its always lie let me explain why detect by virustotal because this software create directory & file so virustotal see it as malware or virus

just look this code

C#:
using System;
using System.IO;

namespace Rw
{
    class Renwar
    {
        static string[] folder={"assets","assets/css","assets/images","assets/js","inc","template-parts","template-parts/footer","template-parts/header","template-parts/navigation","template-parts/page","template-parts/post"};
        static string[] file={"404.php","archive.php","comments.php","footer.php","front-page.php","functions.php","header.php","index.php","page.php","README.txt","rtl.css","search.php","searchform.php","sidebar.php","single.php","style.css","category.php","tag.php"};
        
        public static void Main(string[] args)
        {
           Console.Title="RW (Re Wordpress Theme Structer Generator)";
           Console.WriteLine("Re Wordpress Theme Structer Generator");
           Console.WriteLine("This program only generate a wordpress theme structer (Folder & File)"); 
           Console.Write("Enter theme name:");
           string thName=Console.ReadLine();
           Console.Write("Enter theme location:");
           string thLoc=Console.ReadLine();
           Directory.CreateDirectory(thName);
           foreach(string fs in folder)
           {
                 Directory.CreateDirectory(thLoc+"/"+thName+"/"+fs);
           }
           Console.WriteLine("All folder have been generated");
           foreach(string sf in file)
           {
                 var f=File.Create(thLoc+"/"+thName+"/"+sf);
                 f.Close();
                 File.WriteAllText(thLoc+"/"+thName+"/"+sf,"<?php");
           }
           Console.WriteLine("All file have been generated");
           Console.WriteLine("Dont forget to put screenshot image on theme folder");
           Console.WriteLine("Press enter key to exit........");
           Console.ReadLine();
        }
    }
}
Post automatically merged:

@Luigiver i hope you explained & tell me

Post automatically merged:

even the program doesn't do any networking job & packet tracking you can use wireshark & monitoring this program if do anything wrong
Post automatically merged:

I don't know why some people disrespectful when I'm posting on this fourm 😊 also who don't trust me they can copy the code & compiled by herself 😊
 
Last edited:
Do you have paid service for WordPress theme extraction ?

I have a wordpress template that I developed . I need to copy a theme from different wordpress theme and apply it to my template that have many uniqe functions
 
Back
Top