W3cubDocs

/WordPress

Custom_Image_Header::step(): int

Gets the current step.

Return

int Current step.

Source

public function step() {
	if ( ! isset( $_GET['step'] ) ) {
		return 1;
	}

	$step = (int) $_GET['step'];
	if ( $step < 1 || 3 < $step ||
		( 2 === $step && ! wp_verify_nonce( $_REQUEST['_wpnonce-custom-header-upload'], 'custom-header-upload' ) ) ||
		( 3 === $step && ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'custom-header-crop-image' ) )
	) {
		return 1;
	}

	return $step;
}

Changelog

Version Description
2.6.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/custom_image_header/step