Tags::ap_current_page( string $query_var )
Description #
Modify current page to show tag archive.
Parameters #
- $query_varstring (Required) Current page.
 
Source #
File: addons/tags/tags.php
	public function ap_current_page( $query_var ) {
		if ( 'tags' === $query_var && 'tag' === get_query_var( 'ap_page' ) ) {
			return 'tag';
		}
		return $query_var;
	}
Expand full source code Collapse full source code View on GitHub: addons/tags/tags.php:734
  Add your comment