eventorganiser_stylesheet_handle_{$handle}
(filter)
Filters the handle for a stylesheet
This can be used to swap a stylesheet for another one. While you can deregister a handle
and re-register it with a different source, this also allow multiple handles to be mapped
to one 'common' styelsheet. This is useful for themes that wish to amalgamate a stylesheet
into it's style.css.
This is currently only used with front-end stylsheets
Parameters
string
|
$handle |
The stylesheet handle
|
Example Usage
add_filter( 'eventorganiser_stylesheet_handle_{$handle}', 'my_callback_function', 10, 1 );
function my_callback_function( $handle ){
//Change first value and return it
return $handle
};