,可以通过以下步骤实现:
function custom_product_tab( $tabs ) {
$tabs['custom_tab'] = array(
'title' => __( 'Custom Tab', 'woocommerce' ),
'priority' => 50,
'callback' => 'custom_product_tab_content',
);
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'custom_product_tab' );
function custom_product_tab_content() {
global $product;
// 获取特定Ids的产品
$args = array(
'post_type' => 'product',
'post__in' => array( 1, 2, 3 ), // 替换为您想要显示的产品Ids
'posts_per_page' => -1,
);
$query = new WP_Query( $args );
// 显示产品列表
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
echo '<a href="' . get_permalink() . '">' . get_the_title() . '</a><br>';
}
}
wp_reset_postdata();
}
请注意,以上答案中没有提及腾讯云相关产品和产品介绍链接地址,因为问题与腾讯云无关。如需了解腾讯云的相关产品和服务,请访问腾讯云官方网站。
领取专属 10元无门槛券
手把手带您无忧上云