How to WordPress style CSS only home page apply
How to apply CSS to home page or any specific page in WordPress? here is the simple solution.
is_front_page(): The query is for the front page of the site. It depends on the site’s Frontpage displays Reading Settings show_on_front and page_on_front.
Simple you can custom page in this code include :
#functions.php
function home_page_load_style(){
if( is_front_page() ){
wp_enqueue_style('home-inline', get_template_directory_uri().'/css/home-inline-style.css');
}
}
add_action('wp_enqueue_scripts','home_page_load_style', 1000);