Site logo

Archived topic

Default title

1 reply · Started by Royal Rangers on February 20, 2020

Viewing posts 1–2 of 2

Hi, is possible set a default title for specific format or category? I mean like this:
MY DEFAULT TITLE: other text from title

Hi there,

You can do something like this:

add_filter( 'get_the_archive_title', function( $title ) {
    if ( is_category() ) {
        return 'Posts in category ' . $title;
    }

    return $title;
}, 50 );

Adding PHP: https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.