我使用以下代码分别从单个帖子模板中获取上一篇和下一篇文章的链接;
<?php echo get_permalink(get_adjacent_post(false,'',false)); ?>
<?php echo get_permalink(get_adjacent_post(false,'',true)); ?>
我的问题是,请问,如果有某些帖子我想要跳过这些代码,只是简单地转到那些代码,我可以用某种方式使用自定义字段,或者我怎样才能使Wordpress跳过某个链接时它出现并取出下一个相邻的一个,而不是先去我想要跳过然后重定向或者其他东西,而是立即回复正确的那个……?
非常感谢你!
亚历克斯
解决方法:
您可以通过不同方式处理此问题.最简单的解决方案可能是使用“排除类别”(第二个参数),例如从条款ID为5的类别中排除帖子:
get_adjacent_post( false, '5', false )
另一个选择是使用get_previous_post_where和get_next_post_where过滤器来修改SQL查询.
您可以在选项表中存储要排除的帖子ID数组,下面是一个如何排除所有粘性帖子的示例:
add_filter( 'get_previous_post_where', 'so16495117_mod_adjacent' );
add_filter( 'get_next_post_where', 'so16495117_mod_adjacent' );
function so16495117_mod_adjacent( $where ) {
return $where . ' AND p.ID NOT IN (' . implode( ',', get_option( 'sticky_posts' ) ) . ' )';
}
或者,正如您在Q中建议的那样,您可以过滤掉具有特定帖子元关键字的帖子,例如: my_field:
add_filter( 'get_previous_post_where', 'so16495117_mod_adjacent_bis' );
add_filter( 'get_next_post_where', 'so16495117_mod_adjacent_bis' );
function so16495117_mod_adjacent_bis( $where ) {
global $wpdb;
return $where . " AND p.ID NOT IN ( SELECT post_id FROM $wpdb->postmeta WHERE ($wpdb->postmeta.post_id = p.ID ) AND $wpdb->postmeta.meta_key = 'my_field' )";
}