Skip to content

Instantly share code, notes, and snippets.

@BruceMcKinnon
Created August 27, 2020 01:12
Show Gist options
  • Save BruceMcKinnon/e453dbe5cb6cf31fdfea6c4bf6505549 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/e453dbe5cb6cf31fdfea6c4bf6505549 to your computer and use it in GitHub Desktop.
Add taxonomies to Content Blocks (Custom Post Widgets)
//
// Add Category support to the Custom Post Widget - https://wordpress.org/plugins/custom-post-widget/
// NB - Must set the priority to a high number
//
add_action( 'init', 'add_content_block_taxonomies', 99 );
function add_content_block_taxonomies() {
register_taxonomy_for_object_type( 'category', 'content_block' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment