我目前正在使用wordpress 3.6。
自3.3以来,在prev_post_link()中不推荐使用excluded_categories参数,请参阅http://codex.wordpress.org/Function_Reference/previous_post_link#Resources。
现在明确包含或排除类别的推荐方法是什么?
答案 0 :(得分:0)
使用get_adjacent_post
$in_same_cat = false;/true
$excluded_categories = '';//cat
$previous = true;//false
$previous_post = get_adjacent_post($in_same_cat,$excluded_categories,$previous);
$in_same_cat = false;//true
$excluded_categories = '';//cat
$previous = false;//true
$next_post = get_adjacent_post($in_same_cat,$excluded_categories,$previous);