admin管理员组

文章数量:1406018

is it possible to change the style of the "label" of the result of a get_the_term_list( get_the_ID() ?

    $film_tags = get_the_term_list( get_the_ID(), 'film_tags', 'Tags: ', ', ', '' );

is there a way to have (in the results) the "Tags: " in bold?

thanks!

is it possible to change the style of the "label" of the result of a get_the_term_list( get_the_ID() ?

    $film_tags = get_the_term_list( get_the_ID(), 'film_tags', 'Tags: ', ', ', '' );

is there a way to have (in the results) the "Tags: " in bold?

thanks!

Share Improve this question asked Nov 27, 2019 at 13:28 DandeDande 351 silver badge8 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can use HTML to mark it up however you'd like. You can use a <strong> tag to make it bold:

$film_tags = get_the_term_list( get_the_ID(), 'film_tags', '<strong>Tags:</strong> ', ', ', '' );

Or add a class to style with CSS:

$film_tags = get_the_term_list( get_the_ID(), 'film_tags', '<span class="tags-label">Tags:</span> ', ', ', '' );

本文标签: termsgetthetermlist( gettheID() label formatting