Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created May 19, 2021 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdmrhn/d856a461df6f27ec0745e7084a949a98 to your computer and use it in GitHub Desktop.
Save tdmrhn/d856a461df6f27ec0745e7084a949a98 to your computer and use it in GitHub Desktop.
Activate Category for Pages
<?php
function activate_category_page() {
// register_taxonomy_for_object_type('post_tag', 'page');
register_taxonomy_for_object_type('category', 'page');
}
add_action( 'init', 'activate_category_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment