Sometimes a plugin or theme needs a new page in the admin area, this is post will explain how to do this. There are a number of functions that can be called to make this happen, but they all use add_menu_page or add_submenu_page. Want to see how this all fits together? The code is on… Continue reading How to Add WordPress Admin Pages
Category: WordPress
How to Bootstrap a WordPress Plugin
When WordPress fires up one of the steps along the way is looking for and loading plugins. This happens before the current theme is loaded and after most of the core and must-use plugins are loaded and setup. This process can be seen in wp-settings.php. The gist is that the plugin file is simply loaded… Continue reading How to Bootstrap a WordPress Plugin