Site logo

Archived topic

Adding text to "Display post categories" name

1 reply · Started by Daniel on April 26, 2021

Viewing posts 1–2 of 2

In the Blog section of customiser I have checked "Display post categories" for single posts which works great.
However I would like to add the words "Back to" before the name of the category.
Eg. for category "Services" I would like the link to say "Back to Services."
Can you please assist with how I can do this?
Thank you.

Hi there,

you can add this PHP Snippet:

add_filter( 'generate_inside_post_meta_item_output', function( $output, $item ) {
	if ( is_single() && 'categories' === $item  ) {
        return ' Back to ';
    }
    return $output;
}, 50, 2 );

How to add PHP: https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.