Replace word "Blog" in Breadcrumbs on Icon stack

I know a lot of things are specific to individual stacks, but is there any way of using something other than “blog” in the breadcrumbs on my Icon stack?

I’m using the Integrity stack on another site, which gives me the control I want – I am using them both to supply content to social media and want to pull readers back into a ‘social hub’ on Wordpress. The word Blog has too many negative connotations to me, and the alternative is to switch breadcrumbs off.

Sites:
Intergrity: american-v.co.uk/hub/
Icon: spirit1901.co.uk/hub/

Hi,

To change Blog in breadcrumbs you need to change the page title of your Blog Page.

Thanks

Hi,

I realize you have set your homepage to display latest posts.

To change “Blog” text in breadcrumbs, you can add this in your child theme’s functions.php file

function my_breadcrumbs_data( $args  ) {    
    $args["blog_label"] = "MY BLOG";
    return $args;
}

add_filter( 'x_breadcrumbs_data_args', my_breadcrumbs_data );

Change MY BLOG with your text.

Hope that helps.

Thanks for that: will check it out as soon as I’ve dealt with some urgent ‘content’ stuff and get back to you.

Perfect, thanks Paul

you are welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.