WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: plugin-builder (Used by 5 domains)

Plugin Builder

👤 Chris Taylor 📦 v1.0.0 🔗 Plugin Homepage

This is a plugin for WordPress plugin developers. If you don’t understand what PHP, HTML, CSS, add_action and apply_filters are then this plugin is not for you!

The WordPress Plugin Boilerplate is a fantastic tool for standardising WordPress plugins, and encouraging developers to use best practices. But manual editing of every file to enter the name of the plugin, the author name and all the other metadata is a bit of a chore. This plugin automates that process, giving you a simple form to enter your metadata, then when you hit the ‘Build’ button your new plugin is created with all the correct metadata.

But there’s more. You can also define Custom Post Types and even other custom classes which will have .php files created automatically, and all the relevant code to include those files in your plugin. Once your plugin is built you can, of course, edit the files in any way you want to add extra methods.

Plugin Builder will even create a manager class for your Custom Post Types if you want, as a place to store methods related to your CPTs – such as a get_all() method, for example.

And that’s not all. Some developers like to include extra items in their plugins, like utility classes or frameworks such as the WordPress Settings Framework. Plugin Builder automates that process, too, by downloading and including the files you choose in your new plugin.

Plugin Builder comes with a range of these additional includes you can choose from, but if there are other items you want to include you can make those part of the build process really easily (by extending a simple interface and using a filter).

So, let’s look at the traditional way of using the WordPress Plugin Boilerplate to create a new plugin:

  1. Download the Boilerplate and extract it
  2. Rename all the files using your plugin name (e.g. ‘class-plugin-name.php’ to ‘class-my-plugin.php’)
  3. Go through all the files and replace the metadata with your plugin details (name, slug, author, URIs etc)
  4. Create your CPT class and the registration code,
  5. Add the code to include the CPT file and register the CPT with WordPress
  6. Create a custom class
  7. Add the code to include your custom class file
  8. Download your favourite utility files to your plugin folder
  9. Add the code to include your utility files in your plugin

Or, using Plugin Builder:

  1. Enter the details of your plugin (name and description – the slug and class name are automatically created)
  2. Enter the details of your Custom Post Type (name and description, whether you want a manager class creating)
  3. Enter the details of your custom class (name and description)
  4. Check the box next to any utility files you want to be included
  5. Press ‘Build’

My guess is Plugin Builder will save you 2-4 hours work, and make your plugins much more standard in their architecture.

When your plugin is built the settings for it will be saved so you can rebuild your plugin at any time (this will overwrite any changes you’ve made manually) or make a few changes and create a new plugin.

Optional includes

The optional includes available in Plugin Builder are:

WordPress Settings Framework

The WordPress Settings Framework aims to take the pain out of creating settings pages for your WordPress plugins by effectively creating a wrapper around the WordPress settings API and making it super simple to create and maintain settings pages.

util.php

util.php is a collection of useful functions and snippets that you need or could use every day, designed to avoid conflicts with existing projects.

Expect more includes to be bundled with future versions of Plugin Builder. If you have an idea for an include you want and you think it may be useful for other developers let me know. Or, add your own include (see the next section for details).

Adding your own includes

Adding your own includes to Plugin Builder is really easy. There’s an interface named Plugin_Builder_Include which you need to extend, it has a few methods that need to be implemented. Then you add a call to a method in your include class for the plugin_builder_includes filter. Here’s a simple example:

class My_Include implements Plugin_Builder_Include {

    /**
     * The method run when the user has selected this include.
     *
     * @since    1.0.0
     * @var      Plugin_Builder_Settings    $settings    The settings for the plugin being built.
     */
    public function process_include( $settings ) {

        // This is where you would do the work for your include; downloading files and saving them locally,
        // creating folders, adding settings etc.

        // Returns 'true' if your processing succeeds, and a string detailing the error if it fails.

        // We ALWAYS use the WordPress Filesystem API for file operations, see this for details: https://codex.wordpress.org/Filesystem_API
        global $wp_filesystem;
        if ( ! isset( $wp_filesystem ) || null == $wp_filesystem ) {
            return false;
        }

        // get the file we want to include in the new plugin from a local folder
        // Note: it's tempting to get your files from somewhere on the Internet (such as Github or your own site) but
        // this would be against the WordPress Plugin Guidelines: https://wordpress.org/plugins/about/guidelines/
        // Also you can't include your files in a Zip or other archive, they have to be diff-able (i.e. text-based) files.
        $cache_file = PLUGIN_BUILDER_DIR . 'cache/my-include.php';

        // copy the file to the build folder
        $wp_filesystem->copy( $cache_file, $settings->build_path . 'includes/my-include.php' );

        return true;

    }

    /**
     * Returns any code to be injected into the top of the load_dependencies() method.
     *
     * @since    1.0.0
     */
    public function get_dependencies_code() {

        // Be careful here: you're writing PHP code as a string to be injected into a .php file, so it must be valid.

        return "
        /**
         * My Include
         *
         * My Include is an example include for the Plugin Builder plugin.
         *
         */
        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/my-include.php';
        ";

    }

    /**
     * Returns the unique slug for this include.
     *
     * @since    1.0.0
     */
    public function get_slug(){

        return 'my-include';

    }

    /**
     * Returns the translated title for this include.
     *
     * @since    1.0.0
     */
    public function get_title() {

        return __( 'My Include' );

    }

    /**
     * Returns the translated description (HTML allowed) for this include.
     *
     * @since    1.0.0
     */
    public function get_description() {

        return __( '

My Include is an example include for the Plugin Builder plugin.

' ); } /** * Returns the URL giving more information on this include. * * @since 1.0.0 */ public function get_info_url() { return 'https://some-website.com/my-include/'; } /** * The method that will be called when the add_includes filter runs. * * @since 1.0.0 * @var array $includes The array of includes. */ public function add_includes( $includes ) { return $includes; } } // add this include to Plugin Builder using the plugin_builder_includes filter $my_include = new My_Include(); add_filter( 'plugin_builder_includes', array( $my_include, 'add_include' ) );
DomainExposuresHeadersLast Checked
k*y*k*a*v*v*.com (WP 6.9.4) F 2026-04-16 18:07:15
k*b*r*a*i*g.com (WP 6.9.4) F 2026-04-13 16:33:51
k*i*n*i*s.ru (WP 6.0.2) ⚠️ 2026-03-25 13:34:36
o*d*r*l*s*.com 2025-11-09 15:53:21
d*s*i*a*i*n*e*d*n*d*b*i.com 2025-11-07 04:51:49

Top 50 Plugins

Plugin Count
elementor 3,346,694
contact-form-7 2,897,965
elementor-pro 1,853,788
woocommerce 1,587,290
revslider 1,105,702
js_composer 702,257
jetpack 517,588
wp-rocket 501,904
essential-addons-for-elementor-lite 499,296
header-footer-elementor 447,736
elementskit-lite 424,476
gutenberg-core 380,985
google-analytics-for-wordpress 369,842
instagram-feed 366,848
google-site-kit 354,591
cookie-law-info 339,420
complianz-gdpr 335,485
gravityforms 331,898
wpforms-lite 326,075
astra-sites 319,995
sitepress-multilingual-cms 286,622
litespeed-cache 283,530
bluehost-wordpress-plugin 267,424
gtranslate 218,961
coblocks 197,829
cookie-notice 197,693
the-events-calendar 166,559
premium-addons-for-elementor 165,238
gutenberg 164,420
mailchimp-for-wp 160,686
astra-addon 159,214
bb-plugin 158,593
popup-maker 155,789
LayerSlider 150,799
pro-elements 148,836
wp-smushit 148,694
creame-whatsapp-me 147,567
click-to-chat-for-whatsapp 146,663
sg-cachepress 138,354
tablepress 137,481
custom-fonts 137,270
woocommerce-gateway-stripe 130,252
royal-elementor-addons 129,955
duracelltomi-google-tag-manager 127,494
smart-slider-3 127,102
pixelyoursite 125,192
ultimate-addons-for-gutenberg 123,726
cleantalk-spam-protect 123,622
fusion-builder 118,887
megamenu 118,708

Top 50 Themes

Theme Count
hello-elementor 1,045,895
astra 915,652
Divi 847,091
pub 250,982
generatepress 196,254
flatsome 194,619
Avada 175,335
h4 168,672
oceanwp 144,036
kadence 125,835
enfold 104,257
bb-theme 103,614
twentytwentyfive 101,632
salient 101,219
blocksy 100,136
twentytwentyfour 99,471
cocoon-master 94,680
betheme 85,737
woodmart 80,455
twentyseventeen 78,904
dt-the7 68,742
neve 60,598
twentytwentyone 52,263
bridge 51,313
swell 50,610
lightning 45,097
twentytwentythree 44,634
twentytwenty 44,027
Avada-Child-Theme 41,827
gox 39,495
Impreza 35,843
bricks 35,518
Newspaper 34,068
twentytwentytwo 33,567
storefront 27,571
yith-wonder 27,434
extendable 27,275
pro 26,832
epik-redesign 26,685
uncode 26,262
themify-ultra 26,061
twentysixteen 25,484
sydney 25,004
twentyfifteen 24,561
Total 22,368
porto 21,720
hestia 20,041
go 19,688
thrive-theme 18,926
popularfx 18,730