LittleBizzy

Dominate technical SEO with a SlickStack cloud server for just $39/month!  Order Now

VIDEO: create WordPress plugins on GitHub with ChatGPT

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #41480
    Michael
    Guest

    If you want a really easy example of creating a WordPress plugin directly on GitHub using only the GitHub UI and some ChatGPT prompts please check out my video tutorial:

    https://x.com/jessuppi/status/1850621054072570034

    #41481
    Gary
    Guest

    Many many web devs and designers avoid GitHub because they think it’s so difficult to use! Super easy this way.

    #41493
    Linda
    Guest

    is there no sound or am I going crazy 😅

    #41504
    Grace
    Guest

    is there no sound or am I going crazy 😅

    You’re not crazy, the video has no sound… but I tried to go slowly so that you can follow it easily heh

    #41556
    Keith
    Guest

    Fantastic tutorial, thanks

    #41767
    Teresa
    Guest

    Hi, what is that code that you copy and paste into Chat GPT from your GitHub?

    #41768
    Patricia
    Guest

    Hi, what is that code that you copy and paste into Chat GPT from your GitHub?

    It is example code to get your WordPress plugin started easier in the ChatGPT prompts, this is the code we used:

    https://github.com/littlebizzy/force-https/blob/master/force-https.php

    <?php
    /*
    Plugin Name: Force HTTPS
    Plugin URI: https://www.littlebizzy.com/plugins/force-https
    Description: HTTPS enforcement for WordPress
    Version: 2.0.3
    Requires PHP: 7.0
    Author: LittleBizzy
    Author URI: https://www.littlebizzy.com
    License: GPLv3
    License URI: http://www.gnu.org/licenses/gpl-3.0.html
    GitHub Plugin URI: littlebizzy/force-https
    Primary Branch: master
    */
    
    // prevent direct access
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }
    
    // disable wordpress.org updates for this plugin
    add_filter( 'gu_override_dot_org', function( $overrides ) {
        $overrides[] = 'force-https/force-https.php';
        return $overrides;
    }, 999 );
Viewing 7 posts - 1 through 7 (of 7 total)
Reply To: VIDEO: create WordPress plugins on GitHub with ChatGPT