• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
WPSack

WPSack

WordPress Guides, Tutorials, and Reviews

  • News
  • WP Tutorials
  • Reviews
    • WP Plugins
    • WP Themes
  • SEO
Home > WP Tutorials > Genesis Framework > Quick Guide to Edit Genesis Breadcrumbs in WordPress

Quick Guide to Edit Genesis Breadcrumbs in WordPress

Written by Ella Carson on August 1, 2020 at 11:09 am

Featured image for how to edit breadcrumbs in genesis framework wordpress

Page Contents

  • 1. Go to ‘Appearance’ and click ‘Theme Editor’
  • 2. Select Theme Functions or functions.php file from the right sidebar under Theme Files
  • 3. Copy the code from the code snippet given below and paste it in the functions.php file within the <?php tag
  • 4. Edit Genesis breadcrumbs code if you want
  • 5. Click ‘Update File’ blue button and save changes

If genesis breadcrumbs are enabled, you would want to change them. To modify breadcrumbs in the genesis framework, you have to edit the functions.php file from the theme editor. Here are the steps that you need to follow to edit breadcrumbs in genesis:

Edit Genesis Breadcrumbs

Following are the steps to edit genesis breadcrumbs in WordPress and remove ‘You are here’ from breadcrumbs

1. Go to ‘Appearance’ and click ‘Theme Editor’

2. Select Theme Functions or functions.php file from the right sidebar under Theme Files

3. Copy the code from the code snippet given below and paste it in the functions.php file within the <?php tag

4. Edit Genesis breadcrumbs code if you want

Make changes to the breadcrumbs code if you want by changing values.

5. Click ‘Update File’ blue button and save changes

Here’s the code snippet to edit genesis breadcrumbs that you must place in functions.php file. You can remove You are here: from the code to remove this line from the genesis breadcrumbs. You can also modify genesis breadcrumbs using the following code.

//* Modify breadcrumb arguments.
add_filter( 'genesis_breadcrumb_args', 'sp_breadcrumb_args' );
function sp_breadcrumb_args( $args ) {
	$args['home'] = 'Home';
	$args['sep'] = ' / ';
	$args['list_sep'] = ', '; // Genesis 1.5 and later
	$args['prefix'] = '<div class="breadcrumb">';
	$args['suffix'] = '</div>';
	$args['heirarchial_attachments'] = true; // Genesis 1.5 and later
	$args['heirarchial_categories'] = true; // Genesis 1.5 and later
	$args['display'] = true;
	$args['labels']['prefix'] = 'You are here: ';
	$args['labels']['author'] = 'Archives for ';
	$args['labels']['category'] = 'Archives for '; // Genesis 1.6 and later
	$args['labels']['tag'] = 'Archives for ';
	$args['labels']['date'] = 'Archives for ';
	$args['labels']['search'] = 'Search for ';
	$args['labels']['tax'] = 'Archives for ';
	$args['labels']['post_type'] = 'Archives for ';
	$args['labels']['404'] = 'Not found: '; // Genesis 1.5 and later
return $args;
}

Other WordPress Guides:

  • How to Remove WordPress Logo From Admin Dashboard
  • How to Find the WordPress Login URL (Easy Ways)
  • How to Launch a WordPress Website 2020
  • How To Upload Media Files on WordPress

Last Modified: December 8, 2020 Filed Under: Genesis Framework Tagged With: Breadcrumbs, Functions.php, Genesis Themes

About Ella Carson

Ella Carson writes for WPSack and other popular WordPress blogs. You can contact her via email at editor@wpsack.com

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Follow @WPSack

  • Facebook
  • GitHub
  • Instagram
  • LinkedIn
  • Pinterest
  • RSS
  • Twitter
  • YouTube

Recent Posts

  • Download Free Envato Elements Of 2021
  • How to Launch a WordPress Website 2021
  • 7 Effective Tips To Work From Home
  • Quick Guide to Edit Genesis Breadcrumbs in WordPress
  • Download Envato Free Files of The Month 2021
  • How to Remove WordPress Logo From Admin Dashboard
  • LinkedIn Removed From Google’s Index
  • ICANN Votes Down .ORG Sale Proposal
  • Amazon Cuts Affiliate Payouts Up To 80%
  • How to Find the WordPress Login URL (Easy Ways)

© 2021 GameBird Media · All Rights Reserved.

WPSack is a Hub of WordPress Tutorials, Reviews, Comparisons and How-to Guides.

Our Sister Sites: How-to Guides Hub · TechTout · Health Archives

Say hi@wpsack.com · Developed by GameBird Technologies

  • About Us
  • Contact Us
  • Advertise
  • Write for WPSack
  • Disclosure
  • Privacy Policy
  • Site Map