November 2013
Beginner to intermediate
376 pages
9h
English
As usual, we are going to create a separate plugin for the custom post type related functionalities of this chapter. First, we have to create the plugin folder and main file. So, create a folder named wpwa-custom-post-manager inside the /wp-content/plugins folder. Afterwards, you can create a main file named class-wpwa-custom-post-manager.php to include the plugin definitions, as shown in the following code:
<?php /* Plugin Name: WPWA Custom Posts Manager Plugin URI: Description: Core data management using Custom Post Types for the portfolio management application. Author: Rakhitha Nimesh Version: 1.0 Author URI: http://www.innovativephp.com/ */ ?>
Once the file is created with the preceding ...
Read now
Unlock full access