You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Theme options framework which uses the [WordPress Settings API](http://codex.wordpress.org/Settings_API"WordPress Settings API"), Custom Error/Validation Handling, Custom Field/Validation Types (which are easily extendable), and import/export functionality.
4
+
5
+
## Donate to the Framework ##
6
+
7
+
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GWS9DVBAWP4L4)
8
+
9
+
## Simple Usage ##
10
+
11
+
12
+
Simply include the ```nhp-options.php``` file in your themes ```functions.php``` file, like so:
13
+
14
+
```php
15
+
get_template_part('nhp', 'options');
16
+
```
17
+
18
+
Then change the settings as written in the ```nhp-options.php``` file.
19
+
20
+
## Features ##
21
+
22
+
* Uses the [WordPress Settings API](http://codex.wordpress.org/Settings_API"WordPress Settings API")
23
+
* Multiple built in field types: [View WIKI](/leemason/NHP-Theme-Options-Framework/wiki"View WIKI")
24
+
* Multple layout field types: [View WIKI](/leemason/NHP-Theme-Options-Framework/wiki"View WIKI")
25
+
* Fields can be over-ridden with a callback function, for custom field types
26
+
* Easily extendable by creating Field Classes (more info in the [View WIKI](/leemason/NHP-Theme-Options-Framework/wiki"View WIKI"))
27
+
* Built in Validation Classes: [View WIKI](/leemason/NHP-Theme-Options-Framework/wiki title="View WIKI")
28
+
* Easily extendable by creating Validation Classes (more in the [View WIKI](/leemason/NHP-Theme-Options-Framework/wiki"View WIKI"))
29
+
* Custom Validation error handling, including error counts for each section, and custom styling for error fields
30
+
* Custom Validation warning handling, including warning counts for each section, and custom styling for warning fields
31
+
* Multiple Hook Points for customisation
32
+
* Import / Export Functionality - including cross site importing of settings
0 commit comments