你可以通过不同的方式来解决这个问题。最简单的解决方案可能是使用“排除类别”(第二个参数),例如从术语 ID 5 的类别中排除帖子:
get_adjacent_post( false, '5', false )
另一种选择是使用get_previous_post_where
andget_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' )";
}