Changing the Title of an Archive Page

Changing the Title of an Archive Page

By default, the archive page title is simply the name of the category or tag.

If you want to use a custom title instead, try this PHP snippet:

add_filter( 'get_the_archive_title', function( $title ) {
if ( is_category( 'CATEGORY NAME' ) ) {
$title = 'YOUR CUSTOM TITLE';
}

return $title;
}, 50 );

See more information on WordPress Conditional Tags.

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注