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.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註