Skip to content

Instantly share code, notes, and snippets.

@manchumahara
Last active November 20, 2018 12:14
Show Gist options
  • Save manchumahara/7458f0521c0ca5517bbb5c97837f1e2e to your computer and use it in GitHub Desktop.
Save manchumahara/7458f0521c0ca5517bbb5c97837f1e2e to your computer and use it in GitHub Desktop.
//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