diff --git a/README.md b/README.md index e392a1c..fb8e1bf 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/class-ajax-filter-posts.php b/class-ajax-filter-posts.php index 720524a..322c1da 100755 --- a/class-ajax-filter-posts.php +++ b/class-ajax-filter-posts.php @@ -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']);