WCK Custom Taxonomy Creator allows you to easily create and edit Custom Taxonomies for WordPress without any programming knowledge. It provides an UI for most of the arguments of register_taxonomy() function.
If you want to have a custom list in your theme, then you can pass the taxonomy name into the the_terms() function in the Loop, like so:
the_terms( $post->ID, 'meeting', 'Meeting: ', ', ', ' ' );
That displays the list of Genres attached to each post.
Creating a taxonomy generally automatically creates a special query variable using WP_Query() class, which we can use to retrieve posts based on. For example, to pull a list of posts that have “Monthly” as a “meeting” taxonomy in them, we will use:
$args = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'meeting',
'field' => 'slug',
'terms' => 'monthly',
),
),
);
$query = new WP_Query( $args );
Combine the power of Profile Builder with Paid Member Subscriptions to set up user registration, memberships, and recurring revenue.
Get 25% off with the bundle