• I have a question about the breadcrumb that shows when I am linking to a page on my wp site somewhere else, on facebook for example. The link/breadcrumb will show up like this:
    Lehigh Valley Running Scene » Blog Archive » Lehigh Valley Health Challenge

    How can I get rid of the “Blog Archive” section?? Is there a place somewhere in my code which is doing this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • It’s either generated by your theme (possibly via header.php) or by a plugin.

    Thread Starter jillforsythe

    (@jillforsythe)

    That was it!! It was in the Header.php.

    One more question:

    Looks like this in the header:

    <?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?>

    Do I just remove the text ‘» Blog Archive’

    OR do I remove this entire section:

    { ?> » Blog Archive <?php }

    Try just using <?php bloginfo('name'); ?> <?php wp_title(); ?>

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Breadcrumb/linking questions’ is closed to new replies.