Site icon Qaisar Satti's Blogs

WooCommerce add option

Today, we talk about how to add option settings in WooCommerce or WordPress. It can be used to add option settings for various purposes like theme options or plugin options. There are four parameters that need to be passed to add an option function. These are mentioned here:

Option

This is the first parameter option name that you need, to pass the function. It must be a unique string. This will be used to gather data, setting the data, and deleting it. This is required.

Value

This is the second parameter option value. These are the values you can pass for the option name. This is required.

Deprecated

Not used anymore. Leave empty.

autoload

Whether to load this option when WordPress or WooCommerce starts up. Default is enabled. Accepts ‘no’ to disable.

Following is an example. How to add options.

add_option( 'qaisarsatti_option', 'default values', '', 'yes' );
Exit mobile version