Skip to content

Instantly share code, notes, and snippets.

@osalcedo
Last active August 29, 2015 14:18
Show Gist options
  • Save osalcedo/e6aef28c47ff9b9cc81a to your computer and use it in GitHub Desktop.
Save osalcedo/e6aef28c47ff9b9cc81a to your computer and use it in GitHub Desktop.
Custom Favicon for Genesis Themes - FUNCTIONS.PHP
/** Favicon **/
add_filter( 'genesis_pre_load_favicon', 'eline_favicon_filter' );
function es_favicon_filter( $favicon_url ) {
return $url = site_url('/wp-content/images/favicon.ico');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment