Skip to content

Instantly share code, notes, and snippets.

@ville6000
Created February 27, 2015 12:21
Show Gist options
  • Save ville6000/8c4d8bdcda1dff4b2eb0 to your computer and use it in GitHub Desktop.
Save ville6000/8c4d8bdcda1dff4b2eb0 to your computer and use it in GitHub Desktop.
Add category support to pages
function my_theme_init() {
register_taxonomy_for_object_type( 'category', 'page' );
}
add_action( 'init', 'my_theme_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment