This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Frontend_Scripts::get_styles()
Return list of styles.
Return
(mixed|void)
Source
File: includes/libs/templates/frontend-scripts.class.php
private function get_styles(){ /** * Allow style override. * * Allows overding the default template styles. * * @param array $styles - Array of styles. */ return apply_filters( 'vimeotheque\templates\enqueue_styles', [ 'vimeotheque-styles' => [ 'src' => \Vimeotheque\Helper::get_url() . 'assets/front-end/css/vimeotheque.css', 'deps' => '', 'version' => \Vimeotheque\Helper::get_plugin_version(), 'media' => 'all' ] ] ); }