Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Created February 24, 2014 06:38
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 hlashbrooke/6f377182d89c2a640fd0 to your computer and use it in GitHub Desktop.
Save hlashbrooke/6f377182d89c2a640fd0 to your computer and use it in GitHub Desktop.
Post Length Indicator - Hide the indicator for a specific post
<?php
add_filter( 'pli_show_indicator', 'custom_hide_indicator', 10, 2 );
function custom_hide_indicator( $show, $post ) {
if( 123 == $post->ID ) {
$show = false;
}
return $show;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment