Get custom taxonomy description with paragraph tags

I am printing the description for a custom taxonomy of artists with the following code: $terms = get_the_terms( $post->ID, ‘artists’); if ( $terms ) { // loop through artists (could be multiple) foreach ( $terms as $term ) { $termid = ‘artists_’ . ($term->term_id); echo ‘<p id=”artist-bio”>’; echo $term->description; echo ‘</p>’; } } This works … Read more

Why doesn’t YoastSEO allow me to set the title/description for the home page? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/HTML/CSS questions might be better asked at Stack Overflow or another appropriate site of the Stack Exchange network. Third party plugins and themes are off topic. Closed 7 years ago. Improve this question For some reason, … Read more

Customized title tag for each page in pagination?

With the reference of below questions. How to change title tags on paginated posts? Paginate tags page How to change title tags on paginated posts? Add Page number to Meta Description in WordPress SEO by Yoast I am using WP Page Numbers plugin for pagination But plugin didn’t offer different options. I would like to … Read more

Displaying a custom taxonomy term’s name & description

How can I display a term’s name & description for a custom taxonomy within The Loop (single post page template)? Currently I can show its name like this: the_terms( $post->ID , ‘director’, ‘director: ‘); but can’t get the description EDIT I dont want to use extra php coding like: $directors = get_the_terms($post->ID ,’director’); foreach($directors as … Read more

How to display a description of a given category from a custom taxonomy

I have a taxonomy called tcp_product_category. In the admin panel I have created a few terms within this taxonomy. On the homepage I want to display the description of one of those terms with the slug all-products. For all normal categories I use this code: <?php echo category_description( get_term_by(‘slug’, ‘guide’, ‘category’)->term_id ); ?> This doesn’t … Read more