Created
April 30, 2016 04:29
-
-
Save CaroManel/714492d755f2c120cf6b331b534bfd89 to your computer and use it in GitHub Desktop.
Enables taxonomy (categories) support to pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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