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