Skip to content

Instantly share code, notes, and snippets.

@aprea
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aprea/886a5f1d6ec094e996fc to your computer and use it in GitHub Desktop.
Save aprea/886a5f1d6ec094e996fc to your computer and use it in GitHub Desktop.
Disable excerpt filtering for a specific post category
<?php
function disable_excerpt_filtering() {
// disable excerpt filtering for the "markup" post category
if ( has_category( 'markup' ) ) {
return true;
}
return false;
}
add_filter( 'advanced_excerpt_skip_excerpt_filtering', 'disable_excerpt_filtering' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment