Title: WP Site Options
Author: iTRON
Published: <strong>February 7, 2017</strong>
Last modified: April 28, 2025

---

Search plugins

![](https://ps.w.org/wp-site-options/assets/banner-772x250.jpg?rev=1593979)

![](https://ps.w.org/wp-site-options/assets/icon-256x256.jpg?rev=1593979)

# WP Site Options

 By [iTRON](https://profiles.wordpress.org/hokku/)

[Download](https://downloads.wordpress.org/plugin/wp-site-options.zip)

 * [Details](https://test.wordpress.org/plugins/wp-site-options/#description)
 * [Reviews](https://test.wordpress.org/plugins/wp-site-options/#reviews)
 *  [Installation](https://test.wordpress.org/plugins/wp-site-options/#installation)
 * [Development](https://test.wordpress.org/plugins/wp-site-options/#developers)

 [Support](https://wordpress.org/support/plugin/wp-site-options/)

## Description

The Site Options plugin is a simple and free product for adding your custom site
options on default page Settings -> Reading.
 Just define needed settings in your
functions file. [More instructions](http://nebster.net/en/plugins/site-options/).

Adding your custom options

    ```
        add_action( 'init', 'custom__site_options', 10 );
        function custom__site_options(){
            global $wpto;
            if ( $wpto )
            $wpto->fields = array ( 
                'section_one'   =>  array( array( 'Header - First Settings', 'description will come' ), array(
                    'f_number'  => array( 'number', 'A Number' ),
                    'f_text'    => array( 'text', 'Simple text' ),
                    )),
                'section_two'   =>  array( array( 'Header - Additional settings', 'description will soon' ), array(
                    'f_gallery' => array( 'gallery', 'Awesome gallery' ),
                    'f_chbox'   => array( 'checkbox', 'Are u checked?' ),
                    )),
            );  
        }
    ```

Access in the theme files

    ```
            global $wpto;
            echo $wpto->getOption( 'section_one::f_text' ) ;
    ```

#### Field types support

 * text
 * textarea
 * wysiwyg
 * checkbox
 * number
 * select
 * email
 * image
 * gallery
 * colorpicker

## Screenshots

[⌊Define your custom fields in your file function's.⌉⌊Define your custom fields 
in your file function's.⌉[

Define your custom fields in your file function’s.

[⌊Allow to Settings - Reading and specify field values.⌉⌊Allow to Settings - Reading
and specify field values.⌉[

Allow to Settings – Reading and specify field values.

## Installation

 1. Just setup and activate the plugin through the ‘Plugins – Add’ menu in WordPress

## FAQ

### How do I create settings for my own theme?

Please, [read instructions](http://nebster.net/en/plugins/site-options/).

### What types options are available to use?

 * text
 * textarea
 * wysiwyg
 * checkbox
 * select
 * number
 * email
 * image
 * gallery
 * colorpicker

You can define custom fieldtype by special filter, if no one this types was detected,
see inc/fields.php, filter ‘wpto_echo_field’.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“WP Site Options” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ iTRON ](https://profiles.wordpress.org/hokku/)

[Translate “WP Site Options” into your language.](https://translate.wordpress.org/projects/wp-plugins/wp-site-options)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/wp-site-options/), 
check out the [SVN repository](https://plugins.svn.wordpress.org/wp-site-options/),
or subscribe to the [development log](https://plugins.trac.wordpress.org/log/wp-site-options/)
by [RSS](https://plugins.trac.wordpress.org/log/wp-site-options/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.2.1 – 05/03/17

 * GALLERY field type henceforth return array instead string

#### 1.2 – 05/03/17

 * SELECT field type added
 * Added ability to request clear field value without filtering
 * Bugs fix

#### 1.1 – 26/02/17

 * Added default values

## Meta

 *  Version **1.2.1**
 *  Last updated **1 year ago**
 *  Active installations **30+**
 *  WordPress version ** 4.0 or higher **
 *  Tested up to **6.8.5**
 *  Language
 * [English (US)](https://wordpress.org/plugins/wp-site-options/)
 * Tags
 * [options](https://test.wordpress.org/plugins/tags/options/)[settings](https://test.wordpress.org/plugins/tags/settings/)
   [settings page](https://test.wordpress.org/plugins/tags/settings-page/)[site options](https://test.wordpress.org/plugins/tags/site-options/)
   [theme options](https://test.wordpress.org/plugins/tags/theme-options/)
 *  [Advanced View](https://test.wordpress.org/plugins/wp-site-options/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/wp-site-options/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-site-options/reviews/)

## Contributors

 *   [ iTRON ](https://profiles.wordpress.org/hokku/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/wp-site-options/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.me/hokku)