Add external style sheet from child theme to home page only
-
How do I add a style sheet ONLY to the home page. The style sheet is in the child theme directory.
I’ve tried:
‘
add_action( ‘wp_enqueue_scripts’, ‘aimk_add_stylesheet’ );/**
* Add stylesheet to the page
*/
function aimk_add_stylesheet() {
wp_enqueue_style( ‘masonryCSS’, get_stylesheet_directory_uri(‘homemasonry1540.css’, __FILE__) );
}
}‘
I’ve tried with is_home in if statement but that didn’t work.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add external style sheet from child theme to home page only’ is closed to new replies.