Skip to content

Instantly share code, notes, and snippets.

@kylephillips
Last active August 29, 2015 14:23
Show Gist options
  • Save kylephillips/4b0b242d8b5e653a3d12 to your computer and use it in GitHub Desktop.
Save kylephillips/4b0b242d8b5e653a3d12 to your computer and use it in GitHub Desktop.
Enable Categories for the Location Post Type (Simple Locator)
<?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