我正在尝试查询与我的产品标签具有相同标签的帖子。 我可以在查询之前打印我的标签(参见第一行代码),它可以正常工作,但是在查询中它会出错。
<?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()
。
答案 0 :(得分:0)
get_tags()是WP_Post的成员,而$ product是WC_Product_Simple类型