Add New Category “Block” to Blog Entries
// Add a new custom block option to the entry blocks in the Customizer add_filter( 'totaltheme/blog/entry_blocks/choices', function( $blocks ) { $blocks['custom-category'] = __( 'Category', 'wpex' ); return $blocks; } ); add_filter( 'totaltheme/blog/entry_blocks', function( $blocks ) { if ( isset( $blocks['custom-category']…