apply_filters( 'script_module_loader_src', string $src, string $id )
- Since
- 6.5.0
Filters the script module source.
Parameters
$srcstring- Module source URL.
$idstring- Module identifier.
Fired at · 1
wp-includes/class-wp-script-modules.php:995WP_Script_Modules::get_src()
Source
View on Trac ↗View on GitHub ↗
989 *990 * @since 6.5.0991 *992 * @param string $src Module source URL.993 * @param string $id Module identifier.994 */995 $src = apply_filters( 'script_module_loader_src', $src, $id );996 if ( ! is_string( $src ) ) {997 $src = '';998 }999 1000 return $src;1001 }
History
Introduced in 6.5.0. Unchanged from 6.7.7 through 7.1.0.
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.0.4 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.