Disable or Enable Text Selection
add_filter(
'has_enable_content',
function( $load_content ) {
if ( is_page( 'highlight-and-share' ) ) {
return false;
}
return $load_content;
}
);Last updated
Was this helpful?
add_filter(
'has_enable_content',
function( $load_content ) {
if ( is_page( 'highlight-and-share' ) ) {
return false;
}
return $load_content;
}
);Last updated
Was this helpful?
Was this helpful?