Skip to content

Instantly share code, notes, and snippets.

View northernbellediaries's full-sized avatar

northernbellediaries

View GitHub Profile
@northernbellediaries
northernbellediaries / Replacing BlogHer ad
Last active August 29, 2015 14:02
Replacing BlogHer ad with a different ad
(is_category('#') || (is_single() && in_category('#')))
@northernbellediaries
northernbellediaries / Hide code
Last active August 29, 2015 14:02
Hide BlogHer ad if it this is a single post under # category
<?php if (! ( is_single() && in_category('#') )) { ?>
<center>Paste BlogHer Code Here</center>
<?php } ?>
@northernbellediaries
northernbellediaries / custom gravatar
Last active August 29, 2015 14:01
Custom Gravatar
<?php
//* Do NOT include the opening php tag
//* Create a custom Gravatar
add_filter( 'avatar_defaults', 'custom_gravatar' );
function custom_gravatar ($avatar) {
$custom_avatar = get_stylesheet_directory_uri() . '/images/gravatar.jpg';
$avatar[$custom_avatar] = "Custom Gravatar";
return $avatar;
}