Guest User

Untitled

a guest
Feb 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. add_action( 'init', 'create_book_tax' );
  3.  
  4. function create_book_tax() {
  5. register_taxonomy(
  6. 'genre',
  7. 'page',
  8. array(
  9. 'label' => __( 'Genre' ),
  10. 'rewrite' => array( 'slug' => 'genre' ),
  11. 'hierarchical' => true,
  12. )
  13. );
  14. }
  15. ?>
Add Comment
Please, Sign In to add comment