mc_get_core_icons - joedolson/my-calendar GitHub Wiki

Filter the array of icons available to My Calendar categories.

Auto-generated Example

add_filter(
   'mc_get_core_icons',
    function( array $icons ) {
        // Your code here.
        return $icons;
    }
);

Parameters

  • array $icons Array of icons where the key is the filename and the value is the SVG icon code.

Files

apply_filters( 'mc_get_core_icons', $icons )

← All Hooks