Archived topic
Modify the footer entry meta
5 replies · Started by William on June 26, 2020
Hello Team :)
How can I add a small string of text (E.g. See more articles) in front of the categories list in the footer entry meta section?
Please see this screenshot to visual what I am trying to achieve!
Cheers!
Hi there,
i am not sure if that image is helping ....
do you want the text before the category terms instead of the icon?
eg. See more articles: term1, term2, term3
Hello David,
Yes exactly as you described.
See more articles: term1, term2, term3
:)
Try adding this PHP Snippet:
add_filter( 'generate_category_list_output', function( $output ) {
if ( !is_single()) {
return $output;
}
return '<span class="category-label">See more articles: </span>' . $output;
} );
https://docs.generatepress.com/article/adding-php/
It may need some styling - if it does share a link to your site so i can take a look.
Perfect, thank you :)
You're welcome