Last active
April 16, 2019 14:18
-
-
Save wpspeak/e32db21aaff506e3feeb to your computer and use it in GitHub Desktop.
Add home icon to Genesis Framework breadcrumb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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