Custom_Image_Header::step
Gets the current step.
Method of the class: Custom_Image_Header{}
No Hooks.
Returns
Int. Current step.
Usage
$Custom_Image_Header = new Custom_Image_Header(); $Custom_Image_Header->step();
Changelog
| Since 2.6.0 | Introduced. |
Custom_Image_Header::step() Custom Image Header::step code WP 7.0
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;
}