SHOW:
|
|
- or go back to the newest paste.
| 1 | <?php | |
| 2 | function your_enqueue_function(){
| |
| 3 | wp_enqueue_style( 'your-style-name', get_stylesheet_directory_uri().'/style.css', array(), filemtime(get_stylesheet_directory().'/style.css') ); | |
| 4 | } | |
| 5 | add_action( 'wp_enqueue_scripts', 'your_enqueue_function'); | |
| 6 | ?> |