WP Site Options
The Site Options plugin is a simple and free product for adding your custom site options on default page Settings -> Reading.
Maintenance 38/100247d since update
Active installs
20
Downloads
1,854
Reviews
0
Age
8.9y
Tagssettingsoptionstheme optionssettings pagesite options
Plugin info
Total downloads: 1,854
Active installs: 20
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 4/28/2025 (247 days ago)
Added to WordPress: 2/7/2017 (8 years old)
Minimum WordPress version: 4.0
Tested up to WordPress version: 6.8.3
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Stale • Last updated 247 days ago
38/100
Is WP Site Options abandoned?
Likely maintained (last update 247 days ago).
Compatibility
Requires WordPress: 4.0
Tested up to: 6.8.3
Requires PHP: f
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
MD Responsive WordPress Slider
Rating 5.0/5 (1 reviews) • Active installs 0
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.
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
- image
- gallery
- colorpicker
Installation
- Just setup and activate the plugin through the ‘Plugins – Add’ menu in WordPress
Frequently Asked Questions
Please, read instructions.
- text
- textarea
- wysiwyg
- checkbox
- select
- number
- 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’.
Review feed
No reviews available
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

