Summery Summery
Execute JavaScript depending on step.
Syntax Syntax
Source Source
File: wp-admin/includes/class-custom-image-header.php
public function js() { $step = $this->step(); if ( ( 1 == $step || 3 == $step ) && current_theme_supports( 'custom-header', 'header-text' ) ) { $this->js_1(); } elseif ( 2 == $step ) { $this->js_2(); } }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |