cmoreira

add tags to tshowcase

Jun 25th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_action( 'init', 'tshowcase_add_tags' );
  2. function tshowcase_add_tags() {
  3.     register_taxonomy(
  4.         'top-month',
  5.         'tshowcase',
  6.         array(
  7.             'label' => __( 'Top of the Month' ),
  8.             'rewrite' => array( 'slug' => 'top-month' ),
  9.             'hierarchical' => false,
  10.         )
  11.     );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment