remove file_get_contents for wp.org compliance
This commit is contained in:
parent
3302351ac7
commit
eb1c776b8b
|
@ -29,6 +29,10 @@ class TainacanThemeCollectionColor {
|
|||
|
||||
function form() {
|
||||
|
||||
if (!function_exists('tainacan_get_api_postdata')) {
|
||||
return '';
|
||||
}
|
||||
|
||||
ob_start();
|
||||
?>
|
||||
|
||||
|
@ -128,8 +132,11 @@ class TainacanThemeCollectionColor {
|
|||
}
|
||||
|
||||
function save_meta($object) {
|
||||
global $HTTP_RAW_POST_DATA;
|
||||
$post = json_decode($HTTP_RAW_POST_DATA);
|
||||
if (!function_exists('tainacan_get_api_postdata')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$post = tainacan_get_api_postdata();
|
||||
|
||||
if ($object->can_edit()) {
|
||||
if (isset($post->{$this->background_color})) {
|
||||
|
|
Loading…
Reference in New Issue