Plugin Directory

Changeset 588049


Ignore:
Timestamp:
08/20/2012 10:51:02 PM (14 years ago)
Author:
uniquewebdevelopment
Message:
 
Location:
css-refresh-automatically/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • css-refresh-automatically/trunk/css-refresh.php

    r588044 r588049  
    44Plugin URI: http://www.uniquewebdevelopment.com/
    55Description: Automatic refresh of CSS files on your WordPress website.  Based on cssrefresh.frebsite.nl.
    6 Version: 1.1
     6Version: 1.2
    77Author: Unique Web Development
    88Author URI: http://www.uniquewebdevelopment.com/
     
    2424 * Loads style.css from the template directory at the end of the style scripts.
    2525 */
     26
    2627function loadcssfile() {
    27    
    28     wp_enqueue_style( 'stylesheet', get_template_directory_uri() . '/style.css' );
    29    
    30 }   
    31 add_action('wp_enqueue_scripts', 'loadcssfile', 1000);
    3228
     29wp_register_style('stylesheet', get_template_directory_uri() . '/style.css');
     30wp_enqueue_style('stylesheet');
     31
     32}
     33
     34add_action('wp_print_styles','loadcssfile', 1000);
    3335
    3436/**
  • css-refresh-automatically/trunk/readme.txt

    r588043 r588049  
    55Requires at least: 2.0.2
    66Tested up to: 3.4.1
    7 Stable tag: 4.5
     7Stable tag: 1.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.