wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



has_image_size › WordPress Function

Seit3.9.0
Veraltetn/v
has_image_size ( $name )
Parameter:
  • (string) $name The image size to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if the image size exists, false if not.
Definiert in:
Codex:

Checks if an image size exists.



Quellcode

function has_image_size( $name ) {
	$sizes = wp_get_additional_image_sizes();
	return isset( $sizes[ $name ] );
}