Site logo

Archived topic

Change Archive Title

7 replies · Started by Ingo on May 25, 2018

Viewing posts 1–8 of 8

Hi there,

I'm looking for a way to get the title of my archive changed.

I found your description about the term "generate_archive_title", but I do not get it to work.

Sorry, if this is a noob question as I have no knowledge about php.

Thanks in advance

Ingo

Hi there,

What are you hoping to change it to?

I'd like to change it to: "Alle Rezepte:"

Thank you!

Ok so you want to place "Archive: Rezepte" with "Alle Rezepte:"?

Exactly!

Try this snippet:

add_filter( 'get_the_archive_title', 'lh_adjust_cpt_archives_title' );
function lh_adjust_cpt_archives_title( $title ) {
    if ( is_post_type_archive( 'recipe' )  ) {
        $title = 'Alle Rezepte:';
	  
    }

    return $title;
}

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

Hi Leo!

Awesome, it works like a charm.

Thanks a lot and have a great weekend!

Regards

No problem :)

This archived topic is closed to new replies.