The second parameter of wp_enqueue_style()
is an optional path.You are passing an empty array, which will enqueue nothing.
get_template_directory_uri()
retrieves the current theme’s root URI, which you can use in wp_enqueue_style()
:
add_action('wp_enqueue_scripts','homepage');
function homepage(){
if ( is_page_template('page-home.php') ) {
wp_enqueue_style('home-css', get_template_directory_uri() . '/css/flags.min.css', '1.0.0', true );
}
}
I mentioned “Optional”, since there is also another way to use wp_enqueue_style
. In this method, you can first use wp_register_style
, and then enqueue it:
wp_register_style( 'home-css', get_template_directory_uri() . '/css/flags.min.css' );
wp_enqueue_style('home-css');
The same works for wp_enqueue_script()
.
Based on using parent theme or child, you might also want to take a look into get_stylesheet_directory_uri()
too.
Related Posts:
- How do I dequeue a parent theme’s CSS file?
- Check if a script/style was enqueued/registered
- wp enqueue style on specific page templates
- How to load css in the footer [duplicate]
- How can I get a list of all enqueued scripts and styles?
- Load CSS/Javascript in frontend conditionally if block is used
- Prevent Version URL Parameter (?ver=X.X.X) on Enqueued Styles & Scripts
- How can I de-register ALL styles all at once? And same with Javascript?
- Enqueue custom font file with rel=”preload”
- Removing specific style from wp_head
- How to dequeue / deregister any theme styles and scripts
- Notice that the wp_enqueue_style is not being called correctly!
- Hyphens vs. periods in the script slug in wp_register_script?
- Get the list of enqueued/registered scripts for a specific post?
- Trying to load different syles for 404.php page
- What determines the order of enqueued styles?
- $wp_styles->registered not giving ALL the styles?
- How to use wp_enqueue_style() and wp_enqueue_script() only when needed?
- Preload key requests using wp_enqueue
- Remove a script from a template file using wp_dequeue_script
- Remove specific CSS and JS from the head
- How to dequeue / deregister parent theme style
- Enqueued scripts and styles loading in WordPress Dashboard as well
- Add last modified time as version to css and js
- How can I load script and style in specific page in the back-end?
- Best spot for wp_register_script() and wp_register_style()
- Custom Plugin Development: What priority should wp_enqueue_scripts have?
- How to switch css files according to devices and button click?
- How to control the order of the combination of enqueued styles and scripts – site speed issue
- Register script/style: Is it possible to customize the version query string via plugin?
- Asset loading with gulp.js or Grunt
- How to load script-related styles automatically?
- Optimizing WordPress’s styles and scripts
- Deregister scripts on unnecessary pages using remove_action
- Enqueue Style for a page/pages only
- Why are files enqueued with wp_enqueue_style and wp_enqueue_script 404 Not Found?
- enqueue admin styling and scripts only on plugin page
- using conditionals on enqueue styles
- wp_enqueue_script Doesn’t Work?
- Exclude external uri for css and js version
- How to enqueu php files with custom variable & conditionals?
- Enqueue never runs
- How to enqueue JavaScript file that depends on CSS stylesheet
- How can I properly enqueue tags in WordPress to use with Web Components?
- Load same stylesheet for front end and wp-admin
- Enqueueing Scripts and Styles
- Enqueuing a script before anything else
- How to remove all enqueued assets from the active theme?
- How to add conditionals for IE browsers between certain versions?
- Should we explicitely enqueue jQuery and our theme’s main stylesheet?
- All of my Scripts and Enques are getting file not found
- How to use wp_enqueue_script, style when required
- Enqueueing Scripts/Styles mid-page
- how to load css and js based on post template
- I want to set global directory locations for my CSS and JS locations. How?
- javascript file is not enqueing
- Enqueueing Scripts and Styles to page template that has html
- FullCalendar in WordPress is not working
- Check for Twitter Bootstrap Loaded
- is there a way to get all queued scripts/styles into a template without `get_header()`?
- How do you load js and style resources from CDN with local fallback using wp_enqueue_scripts?
- Filter enqueued styles and scripts
- WordPress wp_enqueue_style and wp_enqueue_script not working
- Stylesheets and scripts not loading
- Scripts and stylesheets failing to load in Chrome IOS (and only Chrome IOS)
- Enqueue script with version number not working
- How to enqueue a script on a specific URL that contains multiple parts
- i can’t handle any style or Js file on my theme . what is the problem of this file?
- Should I be enqueueing styles/scripts once and then dequeueing them?
- List all non-admin enqueued files
- Most optimal way of starting fresh, without using other theme or dropping old files?
- wp_enqueue doesn’t load dependencies
- wp_enqueue_scripts hangs
- Why do WordPress adds the id=”handle-{js|css}” attribute to scripts and stylesheet?
- Should I use wp_register_style(), wp_enqueue_style, or both?
- Is it possible to use wp_localize_script to create global JS variables without a specific script handle?
- Enqueue script in specific page
- Is This The Most Efficient Way To Add Javascript Files?
- Enqueue Script with URL parameters
- Which are the MediaElement.js scripts to enqueue
- Help with enqueing scripts in footer after init action
- wp_enqueue_script order – external vs inline js
- Modernizr check first, then move on to wp_register_script()/wp_enqueue_script
- Is my child theme working properly
- How to avoid loading same script twice?
- How do you enqueue a Visual Basic script using wp_enqueue_script?
- jquery-ui-autocomplete is not loaded with wp_enqueue_script
- Enqueueing a script and a style sheet not working
- Making a plugin only available on the front-end for the logged in super admin
- How can I manually enqueue plugin scripts
- Localizing script to pass a value to a javascript function
- Conditionally load script depending on current admin page
- How to enqueue default scripts with dependency?
- Should I use get_bloginfo(‘stylesheet_directory’) or get_stylesheet_directory_uri() when enqueueing my js files?
- How Do I Enqueue a Script into 2 different Footers on the Same Site?
- Enqueue specific script on account creation (and never again)
- Deregister scripts from plugin
- loading javascript CDN with local fallback (not jQuery)
- Load scripts only for selected template
- Bootstrap navbar responsiveness on WordPress theme menu not working