apply_filters( 'learndash_30_custom_colors', array $custom_colors )
Filters default custom colors used in settings to set accent color, progress color, and notifications settings.
Contents
Description #
Parameters #
- $custom_colors
-
(array) An Associative array of color name and values in hex code.
Source #
Examples #
<?php /** * Example usage for learndash_30_custom_colors filter. */ add_filter( 'learndash_30_custom_colors', function( $custom_colors ) { // May add any custom logic using $custom_colors. // Always return $custom_colors. return $custom_colors; } );