Classifiers
For theme developers. Instead of hard-coding certain texts (selectable options) to your template, make them manageable on the admin side.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 3805 days ago
Is Classifiers abandoned?
Possibly abandoned (last update 3805 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
This plugin is meant for theme developers.
It adds a new admin side page Classifiers, where you can define your classifiers and categories.
Example: Your site user needs to select her favorite color.
1.) Define classifier category ‘color’
2.) Define classifiers: ‘black’, ‘blue’ etc.
Displaying these options in your template:
$cm = new ClassifierManager();
print_r($cm->getClassifiers(1));
OR AJAX:
$http({
method: ‘POST’,
url: $scope.ajaxurl,
params: {
‘action’: ‘wpc_ajax_getclassifiers’,
‘security’: $scope.nonce,
‘category’ : 1
}
}).success( function( data ) {
//do something..
});
Installation
- Upload
classifiersfolder to the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
Frequently Asked Questions
What does this plugin do?
This plugin adds a new admin side page Classifiers.
There you can define your classifiers and categories.
Example: Your site user needs to select her favorite color.
1.) Define classifier category ‘color’
2.) Define classifiers: ‘black’, ‘blue’ etc.
3.) Display these options in your template:
$cm = new ClassifierManager();
print_r($cm->getClassifiers(1));
OR AJAX:
$http({
method: ‘POST’,
url: $scope.ajaxurl,
params: {
‘action’: ‘wpc_ajax_getclassifiers’,
‘security’: $scope.nonce,
‘category’ : 1
}
}).success( function( data ) {
//do something..
});
Review feed
Changelog
1.1 [17/09/15]
- New feature: Change classifier positions
1.0
- Initial


