radiate-framework / framework

A WordPress plugin and theme framework
https://radiate-framework.github.io/
MIT License
4 stars 0 forks source link

Option facade #116

Closed BenRutlandWeb closed 3 years ago

BenRutlandWeb commented 3 years ago

Is your feature request related to a problem? Please describe. Using get_option and related functions is inconsistent with the Radiate framework.

Describe the solution you'd like A facade for the wp_options table to give a consistent API for accessing.

Describe alternatives you've considered Using the native functions.

Additional context

<?php

use Radiate\Support\Facades\Option;

$value = Option::get('key', 'default');

Option::set('value', 'updated_value');

if (Option::has('value')) {
  //
}

Option::delete('value');