Skip to content

Instantly share code, notes, and snippets.

@E-VANCE
Created November 5, 2020 07:25
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 E-VANCE/55cd0469aa0930018edf05227c81655c to your computer and use it in GitHub Desktop.
Save E-VANCE/55cd0469aa0930018edf05227c81655c to your computer and use it in GitHub Desktop.
<?php
/**
* Filter the excerpt
*/
function custom_override_excerpt($excerpt) {
if(in_category(2)) {
$excerpt = 'TESTING – CAT 2';
}
return $excerpt;
}
add_filter('get_the_excerpt', 'custom_override_excerpt', 999);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment