Willie Theron is the founder of Cyberdevs, a Web Development Company that serves clients through the world. He spent most of his early 20's writing custom websites using a combination of Wordpress, PHP and jQuery. When he is not working on web projects he likes watching anime and playing computer games. He also occasionally drags himself out to his local dojo to keep fit.
It’s that time of the year again The 2019 Entelect Challenge has finally started. To me this means I have a chance to: Work on some AI (Something I only do for the Entelect Challenge) Test my coding skills against others Go to Comic Con Win some money Now the money itself is not that…
This forms part of my Wordpress Plugin Development Series. In this section we add JavaScript to a plugin. WP_Enqueue_Script We use Wordpress’ built in function wp_enqueue_script to add JavaScript into a Wordpress file. If you want to see an in depth explanation of the function, see Wordpress Codex Enqueueing your JavaScript In the last section,…
This forms part of my Wordpress Plugin Development Series. In this section we add Shortcodes to a plugin. Our Shortcode We want to create a Shortcode that shows the current date to any section where the Shortcode is called. Hooking your shortcode Add the following code to your Wordpress Plugin. function wt_show_date_function(){ $currentDate = date(‘Y-m-d…
This forms part of my Wordpress Plugin Development Series. In this section we add the functions that trigger when your plugin is activated, deactivated and uninstalled. Essential Wordpress Plugin Functions The Wordpress core includes a system called hooks that can be used when building plugins. These hooks are functions that allow a developer to use…
The purpose of this guide is to make you familiar with Wordpress Plugin Development. What to expect? In this guide I will be building a comprehensive hello world plugin. We will start with a simple Hello World alert. Which will be triggered by a Short code We will then proceed to add some admin settings…
This forms part of my Wordpress Plugin Development Series. In this section we create a readable blank WordPress plugin. First Install To start off you need to give your plugin a unique name. I will call my plugin WT Hello World. This name needs to be unique to avoid conflicts with other wordpress plugins. To…