WP_Super_Cache_Rest_Update_Settings::set_preload_setting() protected WPSCache 1.0
{} It's a method of the class: WP_Super_Cache_Rest_Update_Settings{}
No Hooks.
Return
Null. Nothing.
Usage
// protected - for code of main (parent) or child class $result = $this->set_preload_setting( $value, $name );
- $value(mixed) (required)
- $name(string) (required)
Code of WP_Super_Cache_Rest_Update_Settings::set_preload_setting() WP Super Cache Rest Update Settings::set preload setting WPSCache 1.7.1
protected function set_preload_setting( $value, $name ) {
$_POST[ $name ] = $value;
$_POST['_preload_setting'] = true;
}