Skip to content

Instantly share code, notes, and snippets.

@deeman
Last active August 4, 2018 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deeman/c45155f8b19606572af6308885794bc3 to your computer and use it in GitHub Desktop.
Save deeman/c45155f8b19606572af6308885794bc3 to your computer and use it in GitHub Desktop.
Custom Favicon in Genesis Framework
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Display a custom favicon
add_filter( 'genesis_pre_load_favicon', 'sp_favicon_filter' );
function sp_favicon_filter( $favicon_url ) {
//return 'http://www.mydomain.com/wp-content/themes/genesis-childtheme/images/favicon.ico';
//favicon via image-url(SSL/HTTPS).
return 'https://cdn4.iconfinder.com/data/icons/geomicons/32/672410-skull-16.png';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment