Last active
November 20, 2018 12:14
-
-
Save manchumahara/7458f0521c0ca5517bbb5c97837f1e2e to your computer and use it in GitHub Desktop.
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
//category doesn't show as admin column | |
$cat_args = apply_filters('', array( | |
'hierarchical' => true, | |
'label' => esc_html__('Categories', 'cbxgooglemappro'), | |
'show_ui' => true, | |
'query_var' => true, | |
'rewrite' => array( 'slug' => 'cbxgooglemapcat' ), | |
'singular_label' => esc_html__('Categories', 'cbxgooglemappro') | |
)); | |
register_taxonomy( 'cbxgooglemapcat', array( 'cbxgooglemap' ), $cat_args ); | |
//category shows as admin colun | |
$cat_args = apply_filters('', array( | |
'hierarchical' => true, | |
'label' => esc_html__('Categories', 'cbxgooglemappro'), | |
'show_ui' => true, | |
'show_admin_column' => true, //see this line | |
'query_var' => true, | |
'rewrite' => array( 'slug' => 'cbxgooglemapcat' ), | |
'singular_label' => esc_html__('Categories', 'cbxgooglemappro') | |
)); | |
register_taxonomy( 'cbxgooglemapcat', array( 'cbxgooglemap' ), $cat_args ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment