我尝试从帖子导航(next_post_link和previous_post_link)中排除某些类别,但它不起作用。我需要帮助。
我想将functions.php用于此功能。
有一个很好的功能可以从"类别小部件中排除类别":
function ds_exclude_widget_categories($args) {
$exclude = '1,26,28';
$args['exclude'] = $exclude;
return $args;
}
add_filter('widget_categories_args', 'ds_exclude_widget_categories');
这样的功能怎么能从帖子导航中排除类别?
此致 塞巴斯蒂安
答案 0 :(得分:1)
next_post_link
和previous_post_link
已经有了排除项目https://codex.wordpress.org/Function_Reference/next_post_link
因此,如果您只想从链接中排除ID为13的类别,则应使用
之类的内容<?php next_post_link( '%link', 'Next post in category', FALSE, '13' ); ?>