Changeset 588049
- Timestamp:
- 08/20/2012 10:51:02 PM (14 years ago)
- Location:
- css-refresh-automatically/trunk
- Files:
-
- 2 edited
-
css-refresh.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
css-refresh-automatically/trunk/css-refresh.php
r588044 r588049 4 4 Plugin URI: http://www.uniquewebdevelopment.com/ 5 5 Description: Automatic refresh of CSS files on your WordPress website. Based on cssrefresh.frebsite.nl. 6 Version: 1. 16 Version: 1.2 7 7 Author: Unique Web Development 8 8 Author URI: http://www.uniquewebdevelopment.com/ … … 24 24 * Loads style.css from the template directory at the end of the style scripts. 25 25 */ 26 26 27 function loadcssfile() { 27 28 wp_enqueue_style( 'stylesheet', get_template_directory_uri() . '/style.css' );29 30 }31 add_action('wp_enqueue_scripts', 'loadcssfile', 1000);32 28 29 wp_register_style('stylesheet', get_template_directory_uri() . '/style.css'); 30 wp_enqueue_style('stylesheet'); 31 32 } 33 34 add_action('wp_print_styles','loadcssfile', 1000); 33 35 34 36 /** -
css-refresh-automatically/trunk/readme.txt
r588043 r588049 5 5 Requires at least: 2.0.2 6 6 Tested up to: 3.4.1 7 Stable tag: 4.57 Stable tag: 1.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.