如何将PARAMETERS
添加到此WP function next_post_link()
。
add_filter ('next_post_link', 'new_next_post_link');
function new_next_post_link ($args) {
in_same_cat ??????
return $args;
}
我需要通过FILTER更改它,因为我无法在主题中更改它。我试过这个。
add_filter ('next_post_link', 'new_next_post_link');
function new_next_post_link ($args) {
$args = "Hello World";
return $args;
}
这有效,所以我需要知道如何将“Hello World”更改为next_post_link('%link','类别中的下一个帖子',TRUE);
干杯, 丹尼斯
答案 0 :(得分:0)
in_same_cat
(bool)。默认设置为false。
<?php next_post_link($format, $link, true); ?>
http://codex.wordpress.org/Function_Reference/next_post_link