enqueue wp scripts and styles from a single action hook

Solutions on MaxInterview for enqueue wp scripts and styles from a single action hook by the best coders in the world

showing results for - "enqueue wp scripts and styles from a single action hook "
Camilla
22 Jan 2019
1/**
2 * Proper way to enqueue scripts and styles.
3 */
4function wpdocs_theme_name_scripts() {
5    wp_enqueue_style( 'style-name', get_stylesheet_uri() );
6    wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
7}
8add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' );
9
similar questions