my_calendar_body - joedolson/my-calendar GitHub Wiki

Filter the calendar shortcode main body output.

Auto-generated Example

add_filter(
   'my_calendar_body',
    function( string $body ) {
        // Your code here.
        return $body;
    }
);

Parameters

  • string $body HTML output.

Returns

string

Files

apply_filters( 'my_calendar_body', $body )

← All Hooks