我正在尝试查询与我的产品标签具有相同标签的帖子。我可以在查询之前打印我的标签(参见第一行代码),它可以工作,但是在查询中它全部出错了。
<?php echo $product->get_tags(); ?>
<?php
$producttags = get_tags();
if ($producttags) {
foreach($producttags as $tag) {
$tag = $tag->slug; break;
}
query_posts('tag='.$tag.'&posts_per_page=-1');
while (have_posts()) : the_post(); ?>
<div class="actucontent">
<h3>
<?php the_title(); ?>
</h3>
<?php the_content(); ?>
</div>
<?php endwhile;
wp_reset_query();
}
?>
任何的想法?问题是,我不知道如何$product->get_tags()
在我的查询中调用。