eventorganiser_blog_is_using_ordinal
(filter)
Filters whether your site's date format uses the date suffix 'S'
This is used to determine whether not to format some dates in the admin
with an ordinal suffix.
Parameters
bool
|
$use_ordinal |
Is the site's time format option using 12 hour or 24 hour time.
|
Example Usage
add_filter( 'eventorganiser_blog_is_using_ordinal', 'my_callback_function', 10, 1 );
function my_callback_function( $use_ordinal ){
//Change first value and return it
return $use_ordinal
};