Thread Starter
xdynx
(@xdynx)
DONE
// $tags = “slu1,slug2”;
function countposttags($tags) {
global $wpdb;
$tags = explode(“,”, $tags);
$myquery[‘tax_query’] = array();
foreach ($tags as $tag) {
array_push($myquery[‘tax_query’], array(
‘taxonomy’ => ‘adstags’,
‘terms’ => array($tag),
‘field’ => ‘slug’,
));
} // end forech
$a = query_posts($myquery);
return sizeof($a);
}