I want to create custom links like
mydomain.com/custom_page/cat=ABC&tag=XYZ
So that when a user clicks on the link s/he can see all posts in the category 'ABC' having tag 'XYZ'
For this I've created a custom template with the following code
<?php
/*
Template Name: MyCustomTemplate
*/
?>
<?php get_header(); ?>
global $wp_query;
get_query_var( 'cat' );
get_query_var( 'tag' );
I don't know how to query for the posts in the category 'ABC' with the tag 'XYZ'
I checked http://codex.wordpress.org/Function_Reference/query_posts#Passing_variables_to_query_posts but the examples shown there use 'static' values. I need to query using dynamic values: which are passed via the URL.
Also, I'm using a plugin 'Advanced Custom Fields' and have added a field 'priority' with the defult value 'Z'. I intend to assign one alphabet to each post in the priority field, so that results on the page are served sorted according to "priority" : Posts with the priority 'A' on the top, followed by posts with priority 'B' and so on..