Created
January 16, 2015 11:19
-
-
Save w3guy/2610878d7acde072d037 to your computer and use it in GitHub Desktop.
webpaint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Plugin Name: Site specific plugin for ProfilePress | |
Plugin URI: http://w3guy.com | |
Description: Dummy / site specific plugin | |
Author: Agbonghama Collins | |
Version: 1.0 | |
Author URI: http://w3guy.com | |
*/ | |
function pp_demo_post_type_init() { | |
$args = array( | |
'public' => true, | |
'label' => 'Demos', | |
'taxonomies' => array('category', 'post_tag') | |
); | |
register_post_type( 'demo', $args ); | |
} | |
add_action( 'init', 'pp_demo_post_type_init' ); | |
function pp_documentation_post_type() { | |
$args = array( | |
'public' => true, | |
'label' => 'Documentation', | |
'taxonomies' => array('category', 'post_tag') | |
); | |
register_post_type( 'documentation', $args ); | |
} | |
add_action( 'init', 'pp_documentation_post_type' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment