Last active
August 29, 2015 14:23
-
-
Save kylephillips/4b0b242d8b5e653a3d12 to your computer and use it in GitHub Desktop.
Enable Categories for the Location Post Type (Simple Locator)
This file contains 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
<?php | |
/** | |
* Enable Categories for the Location Post Type | |
*/ | |
function enable_categories_in_locations() | |
{ | |
register_taxonomy_for_object_type('category', 'location'); | |
} | |
add_action( 'init', 'enable_categories_in_locations' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment