Seriously Simple Podcasting: Add blog categories to podcast episodes (admin).
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
add_action( 'init', 'ssp_add_categories_to_podcast', 15 ); | |
function ssp_add_categories_to_podcast () { | |
register_taxonomy_for_object_type( 'category', 'podcast' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment