WP Helper
It provides additional functions and feature that allow you to simplify the development in your plugin new posttype, new taxonomies, new pages and me …
The facts
- Rating
- 5★ from 1
- Active installs
- 100+
- Price
- Free
- Last updated
- 23 May 2013
- Added
- May 2013
- Requires WP
- 3.0
- Tested up to
- WP 3.5.2
- Downloads
- 2,169
Our analysis
AI-assistedWP Helper is a WordPress plugin designed to assist developers by providing four distinct helpers: posttype_helper, taxonomy_helper, attachment_helper, and adminpage_helper. Each helper simplifies the creation of new post types, taxonomies, pages, and admin menus. The plugin requires activation before other plugins that depend on it can function properly.
This plugin is suitable for developers looking to streamline their workflow when creating custom content types and taxonomies within WordPress. It is available for free in the WordPress.org directory.
Best for: Developers looking to simplify the creation of custom post types and taxonomies.
What it does well
- ✓Provides four distinct helpers for development
- ✓Simplifies creation of post types and taxonomies
- ✓Free to use from the WordPress.org directory
Where it falls short
- •Limited information on specific features
- •Last updated in May 2013, may not be compatible with newer WordPress versions
Verdict
WP Helper offers basic tools for WordPress developers, but its age and lack of detailed features may limit its usefulness.
From the developer
lucdecri's own description of WP Helper, lightly tidied.
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 .
‘; } }
}}}