Skip to content

Instantly share code, notes, and snippets.

@bugnumber9
Created April 24, 2024 10:31
Show Gist options
  • Select an option

  • Save bugnumber9/6ce9dcc1d8ee54d07815c161e07f85d4 to your computer and use it in GitHub Desktop.

Select an option

Save bugnumber9/6ce9dcc1d8ee54d07815c161e07f85d4 to your computer and use it in GitHub Desktop.
/**
* Add taxonomy to pages
*/
function bnn_add_pages_tax() {
register_taxonomy(
'page_category',
'page',
array(
'label' => __( 'Categories' ),
'rewrite' => array( 'slug' => 'page-category' ),
'hierarchical' => true,
'show_admin_column' => true,
)
);
}
add_action( 'init', 'bnn_add_pages_tax' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment