[Support request] Default title

Home Forums Support [Support request] Default title

Home Forums Support Default title

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1171641
    Royal Rangers

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

    #1171703
    Leo
    Staff
    Customer Support

    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/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.