wp_scripts_get_suffix() WordPress Function
The wp_scripts_get_suffix() function is used to get the suffix that will be used for the script files. This is useful for adding a cache busting string to the end of the filename.
wp_scripts_get_suffix( string $type = '' ) #
Returns the suffix that can be used for the scripts.
Description
There are two suffix types, the normal one and the dev suffix.
Parameters
- $type
 (string)(Optional)The type of suffix to retrieve.
Default value: ''
Return
(string) The script suffix.
Source
File: wp-includes/script-loader.php
function wp_scripts_get_suffix( $type = '' ) {
	static $suffixes;
	if ( null === $suffixes ) {
		// Include an unmodified $wp_version.
		require ABSPATH . WPINC . '/version.php';
		$develop_src = false !== strpos( $wp_version, '-src' );
		if ( ! defined( 'SCRIPT_DEBUG' ) ) {
			define( 'SCRIPT_DEBUG', $develop_src );
		}
		$suffix     = SCRIPT_DEBUG ? '' : '.min';
		$dev_suffix = $develop_src ? '' : '.min';
		$suffixes = array(
			'suffix'     => $suffix,
			'dev_suffix' => $dev_suffix,
		);
	}
	if ( 'dev' === $type ) {
		return $suffixes['dev_suffix'];
	}
	return $suffixes['suffix'];
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 5.0.0 | Introduced. |