the_content - joedolson/my-calendar GitHub Wiki
Enable running the_content filters on My Calendar output.
Allows oembed and block articulation, but may cause other problems.
Auto-generated Example
add_filter(
'the_content',
function( bool $execute ) {
// Your code here.
return $execute;
}
);
Parameters
bool$executeWhetherthe_contentwill be run. Default false.
Files
apply_filters( 'the_content', $content )