Summery Summery
Retrieves the data to export to the client via JSON.
Syntax Syntax
Return Return
(array) Array of parameters passed to the JavaScript.
Source Source
File: wp-includes/customize/class-wp-customize-partial.php
* @since 4.5.0
*
* @param WP_Customize_Partial $partial Partial.
* @param array $context Context.
* @return string|array|false
*/
public function render_callback( WP_Customize_Partial $partial, $context = array() ) {
unset( $partial, $context );
return false;
}
Advertisement
Changelog Changelog
| Version | Description |
|---|---|
| 4.5.0 | Introduced. |