WordPress Plugin Development – Shortcodes
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…