/ Published in: PHP
Expand |
Embed | Plain Text
// Example 1 if ( !is_admin() ) { wp_register_style( 'my-style', 'http://altuit.on-rev.com/swg/swgwebold/about.css', false, 0.1 ); wp_enqueue_style( 'my-style' ); } // Example 2 <?php if ( !is_admin() ) { wp_register_style( 'my-style', get_bloginfo( 'stylesheet_directory' ) . '/css/site.css', false, 0.1 ); wp_enqueue_style( 'my-style' ); }?>
You need to login to post a comment.
