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.


Top ↑

Parameters

$type

(string)(Optional)The type of suffix to retrieve.

Default value: ''


Top ↑

Return

(string) The script suffix.


Top ↑

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'];
}


Top ↑

Changelog

Changelog
VersionDescription
5.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.