我对如何在前端显示的产品标签中的woocommerce仪表板的内容标签中显示搜索结果有疑问。 标签名称是book,在相关的内容标签中,我有以下代码:
function books_options_product_tab_content() {
<?php
if($post_query->have_posts() ) {
while($post_query->have_posts() ) {
$post_query->the_post();
$featured_img_url = get_the_post_thumbnail_url(get_the_ID(), 'full');
?>
//HERE I want to show all the posts as checkbox.
The selected posts must be displayed in the related tab in the frontend.
<?php
}
add_filter( 'woocommerce_product_data_panels', 'books_options_product_tab_contentt' )
我在上面的代码中评论了这个问题。
我的目标是在产品的wocommerce仪表板选项卡中将所有帖子列为复选框,并在相应的前端选项卡中显示选定的帖子。