Post by post/page tag
-
I want to display all post to a specific category by that post/page tags, something like this:
<?php echo do_shortcode(“[ic_add_posts category=’specific-category’ tag=’$tag’]”); ?>
Here i have troubles: tag=’$tag’]
Something combined with this:
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->slug . ‘ ‘;
}
}
?>Greetings
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Post by post/page tag’ is closed to new replies.