do_action( ‘login_enqueue_scripts’ )

Enqueues scripts and styles for the login page.

More Information

login_enqueue_scripts is the proper hook to use when enqueuing items that are meant to appear on the login page. Despite the name, it is used for enqueuing both scripts and styles, on all login and registration related screens.

Source

do_action( 'login_enqueue_scripts' );

Changelog

VersionDescription
3.1.0Introduced.

User Contributed Notes

  1. Skip to note 3 content
    function themeslug_enqueue_style() {
    	wp_enqueue_style( 'core', 'style.css', false ); 
    }
    
    function themeslug_enqueue_script() {
    	wp_enqueue_script( 'my-js', 'filename.js', false );
    }
    
    add_action( 'login_enqueue_scripts', 'themeslug_enqueue_style', 10 );
    add_action( 'login_enqueue_scripts', 'themeslug_enqueue_script', 1 );
  2. Skip to note 4 content

    From Codex

    function themeslug_enqueue_style() {
    	wp_enqueue_style( 'core', 'style.css', false ); 
    }
    
    function themeslug_enqueue_script() {
    	wp_enqueue_script( 'my-js', 'filename.js', false );
    }
    
    add_action( 'login_enqueue_scripts', 'themeslug_enqueue_style', 10 );
    add_action( 'login_enqueue_scripts', 'themeslug_enqueue_script', 1 );

You must log in before being able to contribute a note or feedback.