| @@ -107,8 +107,22 @@ | ||
| 107 | 107 | public function get_keywords() { |
| 108 | 108 | return [ 'wordpress', 'widget' ]; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | + /** | |
| 112 | + * Get style dependencies. | |
| 113 | + * | |
| 114 | + * Retrieve the list of style dependencies the widget requires. | |
| 115 | + * | |
| 116 | + * @since 3.26.0 | |
| 117 | + * @access public | |
| 118 | + * | |
| 119 | + * @return array Widget style dependencies. | |
| 120 | + */ | |
| 121 | + public function get_style_depends(): array { | |
| 122 | + return [ 'e-swiper' ]; | |
| 123 | + } | |
| 124 | + | |
| 111 | 125 | public function get_help_url() { |
| 112 | 126 | return ''; |
| 113 | 127 | } |
| 114 | 128 | |