File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,11 @@ function get_settings_fields() {
8181 'placeholder ' => __ ( 'Textarea placeholder ' , 'wedevs ' ),
8282 'type ' => 'textarea '
8383 ),
84+ array (
85+ 'name ' => 'html ' ,
86+ 'desc ' => __ ( 'HTML area description. You can use any <strong>bold</strong> or other HTML elements. ' , 'wedevs ' ),
87+ 'type ' => 'html '
88+ ),
8489 array (
8590 'name ' => 'checkbox ' ,
8691 'label ' => __ ( 'Checkbox ' , 'wedevs ' ),
Original file line number Diff line number Diff line change 11<?php
22/**
33 * Plugin Name: WordPress Settings API
4- * Plugin URI: http ://tareq.wedevs.com /2012/06/wordpress-settings-api-php-class/
4+ * Plugin URI: https ://tareq.co /2012/06/wordpress-settings-api-php-class/
55 * Description: WordPress Settings API testing
66 * Author: Tareq Hasan
7- * Author URI: http ://tareq.weDevs.com
8- * Version: 1.1
7+ * Author URI: https ://tareq.co
8+ * Version: 1.3
99 */
1010
1111require_once dirname ( __FILE__ ) . '/src/class.settings-api.php ' ;
Original file line number Diff line number Diff line change @@ -50,6 +50,13 @@ More about [Settings API](http://codex.wordpress.org/Settings_API).
5050Changelog:
5151----------------------
5252```
53+ v1.3 (27 September, 2016)
54+ ------------------------
55+ - [new] Placeholder support for text and textarea input
56+ - [new] min, max and step support for number field
57+ - [fix] Empty multicheck saving warning
58+ - [improved] Don't show the navigation if only one section exists
59+
5360v1.1 (23 April, 2015)
5461------------------------
5562- [new] Folder structure updated
You can’t perform that action at this time.
0 commit comments