WP Site Options

WP Site Options Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,373 downloads
WP Site Options Icon

Try plugin: WP Site Options

We'll create fresh WordPress site with WP Site Options installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About WP Site Options

The Site Options plugin is a simple and free product for adding your custom site options on default page Settings -> Reading.

0


0


0


0


0

updated: 7 years ago
since: 7 years ago

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
  • email
  • image
  • gallery
  • colorpicker