Check if a script/style was enqueued/registered

There is a function called wp_script_is( $handle, $list ). $list can be one of:

  • ‘registered’ — was registered through wp_register_script()
  • ‘queue’ — was enqueued through wp_enqueue_script()
  • ‘done’ — has been printed
  • ‘to_do’ — will be printed

Ditto all that for wp_style_is().

Leave a Comment