#22245 closed feature request (duplicate)
Add Hook: "script_loader_tag"
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | |
| 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)
add_filter( 'script_loader_tag', function ( $html, $handle ) {
if ( 'example' !== $handle )
return $html;
return str_replace('<script ', '<script async ', $html);
}, 12, 2);
- 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.
@ocean90 There's no explanation in #13592 as to why "script_loader_tag" was not added.
Note: See
TracTickets for help on using
tickets.

Example use case?