If you’re using the Yoast SEO plugin (which it looks like you are) then this answer might help you
If you are using yoast SEO plugin then the easiest method is to remove
the archive word from “titles & metas-> Taxonomies->category”find:
%%term_title%% Archives %%page%% %%sep%% %%sitename%% replace it with:
%%term_title%% %%page%% %%sep%% %%sitename%%
Alternatively you could try changing it using the get_the_archive_title
filter as explained here
add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title="<span class="vcard">" . get_the_author() . '</span>' ; } return $title; });
Related Posts:
- Two title tags in my header
- How can i remove JUST the title tag from wp_head() function?
- Prefix the title tag, if IP address is the dev server
- Using php to overwrite or replace title tag, while using yoast [closed]
- How can I add title attributes to next and previous post link functions?
- Problem in wordpress with “-“
- How to add subscript and superscript in WordPress page titles
- Change title in head on Archive page
- add_theme_support( ‘title-tag’ ) in conflict with custom titles function
- Empty title on front page/Home
- REQUIRED: The theme must not used the tags. | REQUIRED: The theme must not call to wp_title()
- Changing “Enter title here” based on post format
- How to get page’s ID if I know the title only?
- How to make a H1 different then the Title?
- How do I edit the tag without using the deprecated `wp_title()` function?
- Change Default Custom Fields Metabox Name
- Automatically add title attribute to links in WordPress
- Get wp_title() from page ID into a variable
- Remove site name from tag
- SEO meta description and title tag Yoast SEO
- What code do you use to generate the text to go into the HTML title tag?
- Where do I change the ACTUAL title tag that is set in the header.php
- Why doesn’t YoastSEO allow me to set the title/description for the home page? [closed]
- Change title tag dynamically or within plugin?
- Get title of page from URL
- Remove site name from title post
- Hide price & title in store thumbnail dispay? [closed]
- Change all Post titles into [Title Case] format
- How to modify a title tag in genesis?
- How do I set the blog name?
- How to Change Title Attribute to be different from Page title
- How to sanitize post title with commas
- Add anchor text to php
- Set max title length – similar to excerpt length for outside of single.php
- How to edit title on Edit post pages?
- How do I shorten the title lenghs with Elementor theme? [closed]
- Remove Title of youtube video
- How to Customize “WordPress > Error” Text in Titlebar?
- How to add H4 tag to the_content filter (after content)?
- Page title is showing category name as well in the google search results
- change title separator
- Sanitize the output of the_title() or the_title_attribute() to remove whitespace
- Change page title dynamically before header is rendered
- Why is a category/ tag name prefixed to title of every page?
- Where does Yoast SEO plugin sets the site/page title?
- After I set the title, it over-wrote all the titles for the individual pages
- Wrap the_title_attribute in a H2 within a Conditional Tag?
- set title attribute in wp_get_attachment_image()
- Title tags show twice
- Setting page title and keywords from PHP code
- Anyway to specify what should appear in in .php file?
- How to solve the site tag being displayed twice?
- How can I override the post title when a post is set to sticky? [closed]
- disallow publish posts with special title
- How to get current page title inside a page’s template
- Remove tagline from the HTML on the home page without plugin?
- Delete a repeated part of post title in WordPress
- how to set alt & title for featured image get_the_post_thumbnail
- How to add publish date in the title
- Change meta data of pdf file
- How come I get internal server error even with try catch for get_the_title in functions.php?
- How can I add a title to this ‘maintenance mode’ function?
- Print title page in header of a specific page
- Front page displays different than all other pages?
- Modify link options when hovering over post title
- How to disable publish button if post title exists
- Wp Admin Bar Customizing Labels
- How to set “lang” attribute for post/page title?
- Enclose title within a div?
- Title how does page no work in Twenty Eleven
- strtolower
- Getting the Image Title (not the post title)
- how to change the title of tag page?
- I want to add number after post tittle for each category
- Add text to the first “title”=>get_the_title($post->ID), and shorten
- Special characters in post_title replaced by ‘?’
- Limit title length
- Remove title bar from post-new.php
- How do you change the title of the Edit Post page?
- How to get page title () in a different order?
- Reorder title tag and description tag with wpseo_title and wpseo_metadesc
- How can I remove an unwanted character from the main page’s title?
- How do you keep the title of a post. to NOT show when publishing the post?
- Custom title when using shortcode
- Change font and Colours in Menus
- Setting Page Title Yoast
- How to modify title tag in a plugin?
- How to Implement Category.php page title in wordpress custom template?
- Why I can not modify the appereance of my title web site in google? [closed]
- Comparing pre-saved post_title to post-saved post_title
- Add Placeholder in WordPress Editor Content Box
- How to delete posts which have same title?
- Generate page title tag from the content of H1
- Append text after wordpress title
- Remove post title in catogory page
- Change Bookmark Name without Changing TITLE Tag [closed]
- reformat entry-title with two different styles
- Trying to get more space removed from my header
- how to put breadcrumb under Title [closed]
- How to fix special characters when the title or excerpt is shortened [closed]