Opened 14 years ago
Closed 14 years ago
#16260 closed enhancement (worksforme)
wp_enqueue_script needs $order param
Reported by: | numediaweb | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.0.4 |
Component: | Themes | Keywords: | |
Focuses: | Cc: |
Description
the function wp_enqueue_script() needs another parameter that enables setting scripts load order.
This will allow more flexibility in theme design; more freedom in choosing how the code in theme templates is organized.
Change History (2)
#2
@
14 years ago
- Milestone Awaiting Review deleted
- Resolution set to worksforme
- Status changed from new to closed
You don't need an $order param. If you want script-b to come after script-a, just make script-a a dependency of script-b:
wp_enqueue_script( 'script-b', 'http://...', array( 'script-a' ) );
Note: See
TracTickets for help on using
tickets.
What's wrong with the third argument?
wp_enqueue_script( $handle, $src = false, $deps = array(), $ver = false, $in_footer = false )