Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Featured Items CLP

if ( ! function_exists( 'infx_register_portfolio_features' ) ) {

// Register Custom Taxonomy
function infx_register_portfolio_features() {

	$labels = array(
		'name'                       => _x( 'Feature', 'Taxonomy General Name', 'infx-child-theme' ),
		'singular_name'              => _x( 'Feature', 'Taxonomy Singular Name', 'infx-child-theme' ),
		'menu_name'                  => __( 'Feature', 'infx-child-theme' ),
		'all_items'                  => __( 'All Features', 'infx-child-theme' ),
		'parent_item'                => __( 'Feature Item', 'infx-child-theme' ),
		'parent_item_colon'          => __( 'Parent Feature:', 'infx-child-theme' ),
		'new_item_name'              => __( 'New Feature Name', 'infx-child-theme' ),
		'add_new_item'               => __( 'Add Feature Item', 'infx-child-theme' ),
		'edit_item'                  => __( 'Edit Feature', 'infx-child-theme' ),
		'update_item'                => __( 'Update Feature', 'infx-child-theme' ),
		'view_item'                  => __( 'View Feature', 'infx-child-theme' ),
		'separate_items_with_commas' => __( 'Separate features with commas', 'infx-child-theme' ),
		'add_or_remove_items'        => __( 'Add or remove features', 'infx-child-theme' ),
		'choose_from_most_used'      => __( 'Choose from the most used', 'infx-child-theme' ),
		'popular_items'              => __( 'Popular Features', 'infx-child-theme' ),
		'search_items'               => __( 'Search Features', 'infx-child-theme' ),
		'not_found'                  => __( 'Feature Not Found', 'infx-child-theme' ),
		'no_terms'                   => __( 'No features', 'infx-child-theme' ),
		'items_list'                 => __( 'Features list', 'infx-child-theme' ),
		'items_list_navigation'      => __( 'Features list navigation', 'infx-child-theme' ),
	);
	$args = array(
		'labels'                     => $labels,
		'hierarchical'               => false,
		'public'                     => true,
		'show_ui'                    => true,
		'show_admin_column'          => true,
		'show_in_nav_menus'          => true,
		'show_tagcloud'              => true,
		'show_in_rest'               => true,
	);
	register_taxonomy( 'portfolio_features', array( 'portfolio' ), $args );

}
add_action( 'init', 'infx_register_portfolio_features', 0 );

}