最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

categories - Add specific word before the category page title

matteradmin6PV0评论

in my site category page (archive page), the page title in browser is like this:

My site | Site Description | Category title

How i can add specific word befor all of category title. like:

My site | Site Description | My word Category title

in my site category page (archive page), the page title in browser is like this:

My site | Site Description | Category title

How i can add specific word befor all of category title. like:

My site | Site Description | My word Category title

Share Improve this question asked Apr 8, 2019 at 6:11 mirazizmiraziz 11 bronze badge
Add a comment  | 

1 Answer 1

Reset to default 1

Since WP 4.4 you can change document title using document_title_parts filter hook, in earlier versions it will be wp_title_parts (since v4.0) or wp_title filter.

add_filter( 'document_title_parts', 'se333744_site_title' );
function se333744_site_title( $title )
{
    if ( isset($title['title']) && strlen($title['title']) && !is_front_page() && is_archive() )
        $title['title'] = ' {some prefix} ' . $title['title'];
    return $title;
}
Post a comment

comment list (0)

  1. No comments so far