If you are using child theme
. Add filter in the functions.php
of child theme like this.
add_filter('get_the_archive_title','wpse_224884_filter_archive_title',10,1);
function wpse_224884_filter_archive_title($title){
if ( is_category() ) {
$title = sprintf( __( '%s', 'shaped-blog' ), single_cat_title( '', false ) );
}
return $title;
}
Or
Copy the entire function into functions.php
function shaped_blog_archive_title( $before="", $after="" ) {
if ( is_category() ) {
$title = sprintf( __( '%s', 'shaped-blog' ), single_cat_title( '', false ) );
}else if ....//remaining code
}
without if ( ! function_exists( 'shaped_blog_archive_title' ) ) :
The only change you need to do is remove Browse Category: in line 4
Related Posts:
- Adding Page Attributes Metabox and Page Templates to the Posts Edit Page?
- Is there a way to list all used/unused WP templates?
- Print WordPress template filename(s) for debugging
- Change the name of the ‘Default Template’
- Echoing Elementor page content in template, but it doesn’t get styles and some widgets are missing
- How do I get the URL of a specific size featured image?
- How can I modify the default reset (lost) password email text?
- Template files missing after moving site
- Create Page that uses specific template
- Prevent private post 404
- Grid layout “last” class to every third item
- How do you modify Page Template?
- Using “setup_postdata” with “get_template_part” does not work
- How can I get the content of the home page?
- Why aren’t my posts showing?
- How to display error on specific template?
- Set template based on query in URL
- How to move style from template file to section?
- Template tags for Buddypress
- What is content.php file that is needed for Jetpack infinite scroll plugin?
- Auto-Generate Longtail-SEO Pages/URLs
- ACF image field to WordPress featured image
- bloginfo(‘template_directory’) img src
- Should template files be copied to the child theme for editing?
- get_template_part returns NULL
- ACF – Theming Flexible Content
- Calling an image within the theme folder from inside a post/page?
- Best Constant to use to check if WordPress is running
- WordPress automatically created files like .theme-name / .plugin-name.php [closed]
- style sheet header on Page Templates
- Why does the Full-width Template in Twenty Twelve pack so many classes into the body class attribute?
- How to support custom templates on a custom post type?
- How to use $wpdb (from the template) to update the DB, without being an admin
- Why are 404s not triggering my 404.php template?
- Can’t format content of Rich Text Editor in Template
- get_file_data to read data for Custom Template File?
- Page attributes missing
- Remove Items from Template Homepage
- Bizarre issue with custom RSS template
- Using shortcode in template file
- Display current category and child
- Return get_header and get_footer string instead of echo it
- Different templates for same content, landing page from different URLs (generic, simple)
- Use one template only for custom post type archives?
- Is there a more efficient way to loop through pages?
- Is it possible to register a new template file?
- What template is used for viewing Media Library Files?
- != and !== both not always working? [closed]
- Remove portion of header code from home page only
- Use a separate template for the home page only
- Create a blank test.php
- How do I remove the word “Blog” from a WordPress Homepage?
- Prevent 404 and serve custom template for custom URL
- AMP version of front page without plugin
- use a custom page to display search results
- Give wp link pages it’s own template
- How to add description over forum list on bbpress root page
- /wp-admin/post.php shows 404 template on submit
- Help Understanding Template Hierarchy
- Which template.php for /blog
- what is template-name.php
- List Category Posts plugin – underline links [closed]
- Conditional template tag for buddypress pages
- Need help with my template [closed]
- Is it possible to create custom links inside a template?
- WordPress Template Reverts to default template after changing
- using add_filter in a template_redirect function?
- How does post loop integrate individual page elements
- Content not showing properly with the first load of the page
- Where do I edit what the user sees on my WordPress site?
- Timber + MtHaml, or any other HAML-like HTML shorthand
- User role templates
- Using a SendGrid transactional template with wp_mail
- Language file doesn’t work (poeedit)
- How to adjust only the template gallery
- Archive only for /year/month, not terms
- Nested Page Template not showing in page attributes
- Header and footer fail to load with SSL and custom links
- How can I add some blocks to template without changing template file?
- Creating a popup
- WordPress not picking up custom templates in sub directory
- Category template not displaying all post formats
- Is it possible to call a template file inside wysiwyg editor? And how?
- Retrieving post ID from current page
- Mysterious template change after database import/export
- Is there a way to share a template/markup with the JSON API so that it doesn’t need to be declared both in PHP and in JS?
- Taxonomy Parent not showing up in address bar
- Styling own template
- WordPress sites translate dynamically generated Homepages
- changes to templates not showing on server
- Why is this page using the homepage template and not the one it should?
- Single template will not show sidebar/bottom-nav and footer
- Problem with permalink structure for WordPress custom post_type archive template
- Strange Behavior of Page Template Dropdown
- WordPress Template works until page becomes a child
- Make default template two columns?
- Read more button not working
- pass dynamic value to page to pull in categorised post cards
- templates page not showing on gutenberg editor
- How to load php templates from html page (block theme)