It provides additional functions and feature that allow you to simplify the development in your plugin new posttype, new taxonomies, new pages and me
Author: | lucdecri (profile at wordpress.org) |
WordPress version required: | 3.0 |
WordPress version tested: | 3.5.1 |
Plugin version: | 0.9 |
Added to WordPress repository: | 23-05-2013 |
Last updated: | 23-05-2013
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
|
Rating, %: | 100 |
Rated by: | 1 |
Plugin URI: | http://www.decristofano.it/ |
Total downloads: | 1 268 |
Active installs: | 30+ |
![]() Click to start download |
wp_helper have 4 distinct plugin.
- posttype_helper
- taxonomy_helper
- attachment_helper
- adminpage_helper
each provides additional features that allow you to simplify the development of new posttype, new taxonomies, new pages and menu administrator, etc.
Detailed list of additional function is coming soon
You must check if wp_helper is actived before active your plugin, with similar code : {{{
if (defined('WP_HELPER')) { // your code here } else { // if defined(WP_HELPER) add_action('admin_notices', 'myplugin_noframework_notice'); }
function myplugin_noframework_notice(){ global $pagenow; if ( $pagenow == 'plugins.php' ) { echo '
To activate this plugin you must install and activate WP HELPER plugin .
'; } }
}}}
FAQ