Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function enqueue() { |
||
17 | require_once dirname( dirname( __FILE__ ) ) . '/class.jetpack-search-helpers.php'; |
||
18 | $style_relative_path = 'modules/search/customize-controls/class-label-control.css'; |
||
19 | $style_version = Jetpack_Search_Helpers::get_asset_version( $style_relative_path ); |
||
20 | $style_path = plugins_url( $style_relative_path, JETPACK__PLUGIN_FILE ); |
||
21 | wp_enqueue_style( 'jetpack-instant-search', $style_path, array(), $style_version ); |
||
22 | } |
||
23 | |||
50 |