Skip to content

Instantly share code, notes, and snippets.

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 INDIAN2020/3f5f0d6978af31d3befa0941576cdee5 to your computer and use it in GitHub Desktop.
Save INDIAN2020/3f5f0d6978af31d3befa0941576cdee5 to your computer and use it in GitHub Desktop.
Highlight and Share - Enable Posts Only
<?php
// Can use Code Snippets to insert: https://wordpress.org/plugins/code-snippets/
// Only enable on single posts (blog posts).
add_filter(
'has_enable_content',
function( $load_content ) {
if ( is_single() ) {
return true;
}
return false;
}
);
add_filter(
'has_enable_excerpt',
function( $load_content ) {
if ( is_single() ) {
return true;
}
return false;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment