Skip to content

Instantly share code, notes, and snippets.

@studiopress
Last active September 26, 2016 11:17
Show Gist options
  • Save studiopress/5706731 to your computer and use it in GitHub Desktop.
Save studiopress/5706731 to your computer and use it in GitHub Desktop.
Genesis images.
<?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/images/favicon.ico';
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Display a custom Gravatar
add_filter( 'avatar_defaults', 'sp_gravatar' );
function sp_gravatar ($avatar) {
$custom_avatar = get_stylesheet_directory_uri() . '/images/gravatar.png';
$avatar[$custom_avatar] = "Custom Gravatar";
return $avatar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment