Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Enqueue WP scripts and styles from a single action hook.

/**
 * Proper way to enqueue scripts and styles.
 */
function wpdocs_theme_name_scripts() {
    wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' );
Source by developer.wordpress.org #
 
PREVIOUS NEXT
Tagged: #Enqueue #WP #scripts #styles #single #action
ADD COMMENT
Topic
Name
5+2 =