Answers for "wordpress enquee"

PHP
2

wordpress enqueue script jquery dependency

function script_that_requires_jquery() {
    wp_register_script( 'script-with-dependency', 'http://www.example.com/script-with-dependency.js', array( 'jquery' ), '1.0.0', true );
    wp_enqueue_script( 'script-with-dependency' );
}
add_action( 'wp_enqueue_scripts', 'script_that_requires_jquery' );
Posted by: Guest on September-17-2020
2

how to add css file in wordpress

wp_enqueue_style( 'style', get_stylesheet_uri() );
Posted by: Guest on May-28-2020

Browse Popular Code Answers by Language