如何将addpress文件添加到add_filter到next_post_link

时间:2013-12-16 16:21:17

标签: wordpress-theming

如何将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);

干杯, 丹尼斯

1 个答案:

答案 0 :(得分:0)

你不需要。第三个参数是in_same_cat(bool)。默认设置为false。

<?php next_post_link($format, $link, true); ?>

http://codex.wordpress.org/Function_Reference/next_post_link