This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4fc61fa
commit 208e869
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/[email protected]&cmd=_ | |
Tags: anspress, question, answer, tags, q&a, forum, stackoverflow, quora | ||
Requires at least: 4.1.1 | ||
Tested up to: 4.4 | ||
Stable tag: 1.5.1 | ||
Stable tag: 1.5.2 | ||
License: GPLv2 or later | ||
License URI: http://www.gnu.org/licenses/gpl-2.0.html | ||
|
||
|
@@ -32,6 +32,9 @@ Or if you want to install it manually simple follow this: | |
|
||
== Changelog == | ||
|
||
= 1.5.1 = | ||
* Minor bug fixes | ||
|
||
= 1.5 = | ||
* Fix: error 404 when tag is numeric | ||
* Fix: Don't check minimum characters when it is zero | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
* Plugin URI: http://anspress.io/tags-for-anspress | ||
* Description: Extension for AnsPress. Add tags in AnsPress. | ||
* Donate link: https://www.paypal.com/cgi-bin/[email protected]&cmd=_xclick&item_name=Donation%20to%20AnsPress%20development | ||
* Version: 1.5.1 | ||
* Version: 1.5.2 | ||
* Author: Rahul Aryan | ||
* Author URI: http://anspress.io | ||
* Text Domain: ap | ||
|
@@ -780,7 +780,9 @@ public function ap_current_page_is($page) { | |
*/ | ||
|
||
function tags_for_anspress() { | ||
$ap_tags = new Tags_For_AnsPress(); | ||
if( apply_filters( 'anspress_load_ext', true, 'tags-for-anspress' ) ){ | ||
$ap_tags = new Tags_For_AnsPress(); | ||
} | ||
} | ||
add_action( 'plugins_loaded', 'tags_for_anspress' ); | ||
|