Dette innstikket er ikkje testa med dei tre siste utgåvene av WordPress. Det kan henda det ikkje blir vedlikehalde lenger, og kan ha problem med nyare versjonar av WordPress.

Classifiers

Skildring

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..
});

Skjermbilete

  • Category list
  • Category view
  • Classifier view

Installasjon

  1. Upload classifiers folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the «Plugins» menu in WordPress

Vanlege spm.

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..
});

Omtalar

There are no reviews for this plugin.

Bidragsytarar og utviklarar

“Classifiers” is open source software. The following people have contributed to this plugin.

Contributors

Endringslogg

1.1 [17/09/15]

  • New feature: Change classifier positions

1.0

  • Initial