Skip to content

Instantly share code, notes, and snippets.

@ronalfy
Last active December 4, 2023 06:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ronalfy/0988188dd38ec9a427c35530b6c28bd0 to your computer and use it in GitHub Desktop.
Save ronalfy/0988188dd38ec9a427c35530b6c28bd0 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