Skip to content

Commit 88d5964

Browse files
committed
Changelog and version updates
Fixes #54 and #59
1 parent 182604f commit 88d5964

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

example/oop-example.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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' ),

plugin.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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

1111
require_once dirname( __FILE__ ) . '/src/class.settings-api.php';

readme.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ More about [Settings API](http://codex.wordpress.org/Settings_API).
5050
Changelog:
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+
5360
v1.1 (23 April, 2015)
5461
------------------------
5562
- [new] Folder structure updated

0 commit comments

Comments
 (0)