Set version to beta, updated installation info
This commit is contained in:
parent
e1f0aa5ed8
commit
db0d7cdea2
|
@ -21,15 +21,15 @@ This plugins uses no dependencies.
|
|||
A comma seperated list of taxonomies to filter the post by. Default post_term.
|
||||
|
||||
- **post_per_page**
|
||||
Numbers of maximum posts to retreive at a time.
|
||||
Numbers of maximum posts to retreive at a time. Default 12.
|
||||
|
||||
## Motivation
|
||||
|
||||
I build a lot of sites that needed a functionality like this and decided to create a plugin for it. Although there are a lot of plugins doing something like this, they usually add a lot of bloat and is very user centered. This is for a developer easier to implement, update and keeps te code cleaner.
|
||||
I build a lot of sites that needed a functionality like this and decided to create a plugin for it. Although there are a lot of plugins doing something like this, they usually add a lot of bloat and is very user centered. This is for a developer easier to implement, adept, update and keeps te code cleaner.
|
||||
|
||||
## Installation
|
||||
|
||||
Add this folder to your plugins or mu-plugins folder.
|
||||
Clone this repo to your plugins or mu-plugins folder.
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ class Ajax_Filter_Posts {
|
|||
public function __construct() {
|
||||
|
||||
$this->plugin_name = 'ajax-filter-posts';
|
||||
$this->version = '1.0.0';
|
||||
$this->version = '0.1';
|
||||
|
||||
add_action( 'wp_enqueue_scripts', [$this,'add_scripts'] );
|
||||
add_action('wp_ajax_process_filter_change', [$this, 'process_filter_change']);
|
||||
|
|
Loading…
Reference in New Issue