remove file_get_contents for wp.org compliance

This commit is contained in:
Leo Germani 2018-09-19 14:12:06 -03:00
parent 3302351ac7
commit eb1c776b8b
1 changed files with 11 additions and 4 deletions

View File

@ -28,9 +28,13 @@ class TainacanThemeCollectionColor {
}
function form() {
if (!function_exists('tainacan_get_api_postdata')) {
return '';
}
ob_start();
?>
?>
<div class="field tainacan-collection--change-color-picker">
<label class="label"><?php _e('Collection Background Color', 'tainacan-interface'); ?></label>
@ -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})) {