我正在尝试在woocommerce产品单选项卡中插入一个post循环(wp_query东西)。我们的想法是在那里展示与产品相关的帖子。 然而,产品固定不变。
在function.php中完成所有工作。首先,我添加标签。
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
if (get_post_meta(get_the_ID(), '_crowdfundingcheckboxvalue', true) == 'yes') {
$tabs['test_tab'] = array(
'title' => __( 'New tab', 'woocommerce' ),
'priority' => 50,
'callback' => 'woo_new_product_tab_content'
);
};
return $tabs;
}
此部分没问题,添加了新标签。然后是自定义分页功能。
function custom_pagination($numpages = '', $pagerange = '', $paged='') {
if (empty($pagerange)) {
$pagerange = 2;
}
global $paged;
if (empty($paged)) {
$paged = 1;
}
if ($numpages == '') {
global $wp_query;
$numpages = $wp_query->max_num_pages;
if(!$numpages) {
$numpages = 1;
}
}
$pagination_args = array(
'base' => get_pagenum_link(1) . '%_%',
'format' => 'page/%#%',
'total' => $numpages,
'current' => $paged,
'show_all' => False,
'end_size' => 1,
'mid_size' => $pagerange,
'prev_next' => True,
'prev_text' => __('«'),
'next_text' => __('»'),
'type' => 'plain',
'add_args' => false,
'add_fragment' => ''
);
$paginate_links = paginate_links($pagination_args);
if ($paginate_links) {
echo "<nav class='custom-pagination'>";
echo "<span class='page-numbers page-num'>Page " . $paged . " of " . $numpages . "</span> ";
echo $paginate_links;
echo "</nav>";
}
}
一切都没有冲突。获取当前产品ID并执行循环,找到要显示的相关帖子。
function woo_new_product_tab_content() {
// The new tab content
echo'<div class="inner">';
echo '<h2>New tab</h2>';
$paged = ( get_query_var('page') ) ? get_query_var('page') : 1;
$id = get_the_ID();
$custom_args = array(
'post_type' => 'fundupdate',
'posts_per_page' => 2,
'post_status' => 'publish',
'meta_query' => array (
array (
'key' => 'campaign_id',
'value' => $id
)
),
'paged' => $paged,
'page' => $paged
);
$custom_query = new WP_Query( $custom_args );
if ( $custom_query->have_posts() ) :
while ( $custom_query->have_posts() ) : $custom_query->the_post();
the_title();
endwhile;
if (function_exists(custom_pagination)) {
custom_pagination($custom_query->max_num_pages,"",$paged);
}
wp_reset_postdata();
else:
echo 'Sorry, no posts matched your criteria';
endif;
echo'</div>';
}
这里的一切都很好,但致命的问题:产品单身似乎不允许其固定链接包含分页参数。
所有重定向都回到原来的链接(例如www.example.com/store/product),尽管页面导航有自己的分页参数(例如www.example.com/store/product/page/2)。只是问它是否能够通过php方式解决?或者去ajax避免这个问题?