Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CaroManel/714492d755f2c120cf6b331b534bfd89 to your computer and use it in GitHub Desktop.
Save CaroManel/714492d755f2c120cf6b331b534bfd89 to your computer and use it in GitHub Desktop.
Enables taxonomy (categories) support to pages
//adding category support to pages
add_action('admin_init', 'ga_register_tax_for_pages');
function ga_register_tax_for_pages() {
register_taxonomy_for_object_type('category', 'page');
add_post_type_support('page', 'category');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment