wp_scripts_get_suffix( string $type = '' )

Returns the suffix that can be used for the scripts.


Description Description

There are two suffix types, the normal one and the dev suffix.


Parameters Parameters

$type

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

Default value: ''


Top ↑

Return Return

(string) The script suffix.


Top ↑

Source Source

File: wp-includes/script-loader.php

function wp_scripts_get_suffix( $type = '' ) {
	static $suffixes;

	if ( $suffixes === null ) {
		include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version

		$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 ( $type === 'dev' ) {
		return $suffixes['dev_suffix'];
	}

	return $suffixes['suffix'];
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.