I want show only post contain/have tags = test1, test1
<?php
if (have_posts()) {
while (have_posts()){the_post();
?>
????????????
I want show only post contain/have tags = test1, test1
<?php
if (have_posts()) {
while (have_posts()){the_post();
?>
????????????
You have to use Query Posts
http://codex.wordpress.org/Function_Reference/query_posts
With Wp Query Parameters
http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
;)
You must log in to post.