我使用以下代码分别从单个帖子模板中获取上一篇和下一篇文章的链接;
<?php echo get_permalink(get_adjacent_post(false,'',false)); ?>
<?php echo get_permalink(get_adjacent_post(false,'',true)); ?>
我的问题是,请问,如果有某些帖子我希望这些代码可以跳过,只需转到后面的那些,我可以用某种方式使用自定义字段,或者我怎样才能使Wordpress跳过一个当它出现时获取某个链接并获取下一个相邻的链接而没有先去我想要跳过然后重定向的东西,而是立即回复正确的那个...?
非常感谢!
亚历
答案 0 :(得分:5)
你可以用不同的方式来解决这个问题。最简单的解决方案可能是使用“排除类别”(第二个参数),例如从条目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' )";
}