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

---

Pesquisar 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

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

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

 * [Detalhes](https://br.wordpress.org/plugins/wp-site-options/#description)
 * [Avaliações](https://br.wordpress.org/plugins/wp-site-options/#reviews)
 *  [Instalação](https://br.wordpress.org/plugins/wp-site-options/#installation)
 * [Desenvolvimento](https://br.wordpress.org/plugins/wp-site-options/#developers)

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

## Descrição

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

## Capturas de tela

 * [[
 * Define your custom fields in your file function’s.
 * [[
 * Allow to Settings – Reading and specify field values.

## Instalação

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

## Perguntas frequentes

### 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’.

## Avaliações

Não há avaliações para este plugin.

## Colaboradores e desenvolvedores

“WP Site Options” é um programa de código aberto. As seguintes pessoas contribuíram
para este plugin.

Colaboradores

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

[Traduzir o “WP Site Options” para seu idioma.](https://translate.wordpress.org/projects/wp-plugins/wp-site-options)

### Interessado no desenvolvimento?

[Navegue pelo código](https://plugins.trac.wordpress.org/browser/wp-site-options/),
consulte o [repositório SVN](https://plugins.svn.wordpress.org/wp-site-options/)
ou assine o [registro de desenvolvimento](https://plugins.trac.wordpress.org/log/wp-site-options/)
por [RSS](https://plugins.trac.wordpress.org/log/wp-site-options/?limit=100&mode=stop_on_copy&format=rss).

## Registro de alterações

#### 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

 *  Versão **1.2.1**
 *  Última atualização **1 ano atrás**
 *  Instalações ativas **20+**
 *  Versão do WordPress ** 4.0 ou superior **
 *  Testado até **6.8.5**
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/wp-site-options/)
 * Tags
 * [options](https://br.wordpress.org/plugins/tags/options/)[settings](https://br.wordpress.org/plugins/tags/settings/)
   [settings page](https://br.wordpress.org/plugins/tags/settings-page/)[site options](https://br.wordpress.org/plugins/tags/site-options/)
   [theme options](https://br.wordpress.org/plugins/tags/theme-options/)
 *  [Visualização avançada](https://br.wordpress.org/plugins/wp-site-options/advanced/)

## Classificações

Ainda não foi enviada nenhuma avaliação.

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

[Ver todas avaliações](https://wordpress.org/support/plugin/wp-site-options/reviews/)

## Colaboradores

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

## Suporte

Tem algo a dizer? Precisa de ajuda?

 [Ver fórum de suporte](https://wordpress.org/support/plugin/wp-site-options/)

## Doar

Gostaria de contribuir para o desenvolvimento deste plugin?

 [ Doe para este plugin ](https://www.paypal.me/hokku)