Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 14, 2013 13:11
Show Gist options
  • Save RhythmShahriar/6975360 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6975360 to your computer and use it in GitHub Desktop.
<?php
/**-------------------------------------------
* @package Code Snippets
* @link http://rhythmshahriar.com/code/
* @author Rhythm <[email protected]>
* @copyright Copyright (c) 2013, Rhythm Shahriar
-------------------------------------------------*/
// Display a custom favicon on Genesis
add_filter( 'genesis_pre_load_favicon', 'rs_custom_favicon' );
function rs_custom_favicon( $favicon_url ) {
return 'http://rhythmshahriar.com/wp-content/themes/rhythm/images/favicon.ico';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment