BeaverBuilder
3 weeks ago
Divi
3 days ago
Elementor
3 weeks ago
LearnDash
3 weeks ago
Lifter
1 year ago
Tutor
1 year ago
Kadence.php
1 year ago
Kadence.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PrestoPlayer\Integrations; |
| 4 | |
| 5 | class Kadence { |
| 6 | |
| 7 | public function register() { |
| 8 | add_filter( 'presto_player_default_color', array( $this, 'defaultColor' ) ); |
| 9 | } |
| 10 | |
| 11 | public function defaultColor( $color ) { |
| 12 | if ( function_exists( '\Kadence\kadence' ) ) { |
| 13 | return \Kadence\kadence()->palette_option( 'palette1' ); |
| 14 | } |
| 15 | return $color; |
| 16 | } |
| 17 | } |
| 18 |