BeaverBuilder
1 month ago
Divi
1 week ago
Elementor
1 month ago
LearnDash
1 month ago
Lifter
2 years ago
Tutor
2 years ago
Kadence.php
2 years 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 |