wp-forge/wp-options

A WordPress helper class for managing plugin options.

1.1 2022-03-04 16:23 UTC

This package is auto-updated.

Last update: 2024-05-04 20:57:02 UTC


README

A WordPress helper class for managing plugin options.

Installation

composer require wp-forge/wp-options

Usage

Setting Options

<?php

use WP_Forge\Options\Options;

$options = new Options('my_plugin_options');

// Pass the option name and option value as parameters.
$options->set('name', 'value');

Getting Options

<?php

use WP_Forge\Options\Options;

$options = new Options('my_plugin_options');

// Pass the option name and a default value as parameters.
// If a default value is not provided, `null` will be the default return value.
$options->get('name', 'default');

Deleting Options

<?php

use WP_Forge\Options\Options;

$options = new Options('my_plugin_options');

// Pass the option name to be deleted as a parameter.
$options->delete('name');

Checking if an Option Exists

<?php

use WP_Forge\Options\Options;

$options = new Options('my_plugin_options');

// Pass the option name as a parameter.
$options->has('name');

Saving Options

By default, options will save automatically on the shutdown hook.

However, if you'd like to force a save, you can do it like this:

<?php

use WP_Forge\Options\Options;

$options = new Options('my_plugin_options');

// Pass the option name and option value as parameters
$options->save();