Created
April 12, 2018 02:26
-
-
Save rodgtr1/7eebf48a22db7b3cb11b1f2ad6dc735e to your computer and use it in GitHub Desktop.
Add a Custom Favicon - Genesis
This file contains 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
/** Adding custom Favicon */ | |
add_filter( 'genesis_pre_load_favicon', 'custom_favicon' ); | |
function custom_favicon( $favicon_url ) { | |
return 'http://example.com/wp-content/uploads/favicon.png'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment