Tag: Develop
-
Tutorial: Develop Plug-in that displays list of Posts under Admin-Settings in 8 Steps
General: Here a plugin that will display a list of posts will be demonstrated. Read more about developer resources here: https://developer.wordpress.org/ Step 01: Plugin name will be DisplayListOfPosts Step 02: Create a directory under wordpress-root\wp-content\plugins\DisplayListOfPosts Step 03: Create a file under that directory called: DisplayListOfPosts.php Step 04: The the following content to the plugin file:…
-
Learn how to develop WordPress Plugins
Learn how to develop WordPress Plugins 01 – Under <Wordpress-directory>wp-contentPlugins create a directory with the Plugin Name. 02 – There create a file <Plugin Name>.php 03 – Under WordPress plugins page the new plugin will be shown. 04 – Copy and paste the HelloWorld example below to <Plugin Name>.php file. 05 – Activate the Plugin from…