Created
January 18, 2015 19:15
-
-
Save shahadat014/71986c1b8da98dd6f550 to your computer and use it in GitHub Desktop.
Register custom post & custom taxonomy in wordpress
This file contains hidden or 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
| Register custom post type | |
| add_action( 'init', 'my_theme_custom_post' ); | |
| function my_theme_custom_post() { | |
| register_post_type( 'cpt', | |
| array( | |
| 'labels' => array( | |
| 'name' => __( 'CPTs' ), | |
| 'singular_name' => __( 'CPT' ) | |
| ), | |
| 'supports' => array('title', 'editor', 'custom-fields', 'thumbnail', 'page-attributes') | |
| ) | |
| ); | |
| } | |
| Register custom taxonomy | |
| function my_theme_custom_post_taxonomy() { | |
| register_taxonomy( | |
| 'cpt_cat', | |
| 'cpt', | |
| array( | |
| 'hierarchical' => true, | |
| 'label' => 'CPT Category', | |
| 'query_var' => true, | |
| 'show_admin_column' => true, | |
| 'rewrite' => array( | |
| 'slug' => 'cpt-category', | |
| 'with_front' => true | |
| ) | |
| ) | |
| ); | |
| } | |
| add_action( 'init', 'my_theme_custom_post_taxonomy'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment