user_value; } /** * Store the color in the Global Styles custom post * * @param string $color The input color. * @return WP_Post|WP_Error The post or a WP_Error if the value could not be saved. */ public function update( $color ) { if ( empty( $color ) ) { return; } $this->new_value = $color; } } }