Changeset 2251610
- Timestamp:
- 02/27/2020 08:52:46 PM (6 years ago)
- Location:
- scss-library/trunk
- Files:
-
- 2 edited
-
scss-library.php (modified) (1 diff)
-
src/ScssLibrary.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scss-library/trunk/scss-library.php
r2251603 r2251610 4 4 Description: Adds support for SCSS stylesheets to wp_enqueue_style. 5 5 Author: Juan Sebastián Echeverry 6 Version: 0.2. 46 Version: 0.2.5 7 7 Text Domain: scsslib 8 8 -
scss-library/trunk/src/ScssLibrary.php
r2251591 r2251610 1 1 <?php 2 2 /* 3 Plugin Name: SCSS-Library4 Description: Adds support for SCSS stylesheets to wp_enqueue_style.5 Author: Juan Sebastián Echeverry6 Version: 0.1.37 Text Domain: scsslib8 3 9 4 Copyright 2019 Juan Sebastián Echeverry (baxtian.echeverry@gmail.com) … … 356 351 357 352 // Sub item para recompilar 358 $admin_bar->add_menu( array( 359 'id' => 'clear-scss', 360 'parent' => 'scss-library', 361 'title' => __('Recompile SCSS files', 'scsslib'), 362 'href' => $url['path'] . '?' . http_build_query($query1), 363 )); 353 if(!is_admin()) { 354 $admin_bar->add_menu( array( 355 'id' => 'clear-scss', 356 'parent' => 'scss-library', 357 'title' => __('Recompile SCSS files', 'scsslib'), 358 'href' => $url['path'] . '?' . http_build_query($query1), 359 )); 360 } 364 361 365 362 // Si no está activo el develop
Note: See TracChangeset
for help on using the changeset viewer.