The Site Options plugin is a simple and free product for adding your custom site options on default page Settings -> Reading.
Рейтинги
Последние изменения
March 5, 2017
Версия
1.2.1
Активные установки
20
WP Site Options

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' ) ;

Поддерживаемые типы

  • text
  • textarea
  • wysiwyg
  • checkbox
  • number
  • select
  • email
  • image
  • gallery
  • colorpicker
Активные установки
20
Проверено на
4.7.29
Этот плагин можно скачать и использовать при автономной установке WordPress.