mc_get_core_icon_index - joedolson/my-calendar GitHub Wiki
Filter the index of icons available to My Calendar categories.
Auto-generated Example
add_filter(
'mc_get_core_icon_index',
function( array $icons ) {
// Your code here.
return $icons;
}
);
Parameters
array$iconsArray of icons where the key is the filename and the value is a text description used for search.
Files
apply_filters( 'mc_get_core_icon_index', $icons )