Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/d20c30eda6e5b757bcec2039667081f5 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/d20c30eda6e5b757bcec2039667081f5 to your computer and use it in GitHub Desktop.
/ Assign Category and Tags to WordPress Page
function add_taxonomies_to_pages() {
//register_taxonomy_for_object_type( 'post_tag', 'page' );
register_taxonomy_for_object_type( 'category', 'page' );
}
add_action( 'init', 'add_taxonomies_to_pages' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment