#22245 closed feature request (duplicate)
Add Hook: "script_loader_tag"
Reported by: | ryanve | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
There exists a filter for "style_loader_tag" in wp-includes/class.wp-styles.php. A corresponding filter "script_loader_tag" in wp-includes/class.wp-scripts.php would be very useful for customizing script loading.
Change History (5)
#2
@
12 years ago
add_filter( 'script_loader_tag', function ( $html, $handle ) { if ( 'example' !== $handle ) return $html; return str_replace( '<script ', '<script async ', $html ); }, 12, 2);
#3
@
12 years ago
- Component changed from Formatting to General
- Keywords dev-feedback needs-patch removed
- Milestone Awaiting Review deleted
- Resolution set to duplicate
- Status changed from new to closed
Duplicate of #13592.
Note: See
TracTickets for help on using
tickets.
Example use case?