Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active April 16, 2019 14:18
Show Gist options
  • Save wpspeak/e32db21aaff506e3feeb to your computer and use it in GitHub Desktop.
Save wpspeak/e32db21aaff506e3feeb to your computer and use it in GitHub Desktop.
Add home icon to Genesis Framework breadcrumb
<?php
//* Replace 'Home' text with a home icon in Genesis Framework breadcrumb
add_filter ( 'genesis_home_crumb', 'afn_breadcrumb_home_icon' );
function afn_breadcrumb_home_icon( $crumb ) {
$crumb = '<a href="' . home_url() . '" title="' . get_bloginfo('name') . '"><i class="dashicons dashicons-admin-home"></i></a>';
return $crumb;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment