- This topic is empty.
-
AuthorPosts
-
28 Oct, 2024 at 6:52 am #41480
Michael
GuestIf 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:
28 Oct, 2024 at 7:04 am #41481Gary
GuestMany many web devs and designers avoid GitHub because they think it’s so difficult to use! Super easy this way.
30 Oct, 2024 at 10:06 pm #41493Linda
Guestis there no sound or am I going crazy 😅
31 Oct, 2024 at 10:16 am #41504Grace
Guestis 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
2 Nov, 2024 at 2:04 pm #41556Keith
GuestFantastic tutorial, thanks
26 Nov, 2024 at 7:17 am #41767Teresa
GuestHi, what is that code that you copy and paste into Chat GPT from your GitHub?
26 Nov, 2024 at 7:18 am #41768Patricia
GuestHi, 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 );27 Dec, 2024 at 6:11 pm #42238 -
AuthorPosts