Skip to content

Instantly share code, notes, and snippets.

@eugenoprea
Created February 19, 2013 18:36
Show Gist options
  • Save eugenoprea/4988610 to your computer and use it in GitHub Desktop.
Save eugenoprea/4988610 to your computer and use it in GitHub Desktop.
Exclude DiggDigg From Specific Pages
/** Exclude DiggDigg from specific pages */
function eo_exclude_digg_digg() {
if(is_page(array(1, 2, 3, 4))) {
remove_filter('the_excerpt', 'dd_hook_wp_content');
remove_filter('the_content', 'dd_hook_wp_content');
}
}
add_action('template_redirect', 'eo_exclude_digg_digg');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment