如何在主题中自定义get_the_post_navigation

时间:2015-04-13 15:31:36

标签: wordpress wordpress-theming

get_the_post_navigation()函数在wp-includes/link-template.php

中定义

如何在主题中覆盖它?

1 个答案:

答案 0 :(得分:4)

get_the_post_navigation没有使用任何过滤器,因此没有简单的方法来修改或覆盖其所有输出。

虽然get_the_post_navigation本身不应用任何过滤器,但它会调用应用过滤器的函数。具体来说是get_adjacent_post_link

return apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post );

连接到该过滤器将允许您覆盖输出的一些但不是全部。 get_the_post_navigation也使用_navigation_markup,但不应用任何过滤器。输出的那部分不能被覆盖。

您可以request将过滤器添加到该功能中。这将是一个简单的更新,它将使您能够覆盖所有输出。

function _navigation_markup( $links, $class = 'posts-navigation', $screen_reader_text = '' ) {
    if ( empty( $screen_reader_text ) ) {
        $screen_reader_text = __( 'Posts navigation' );
    }

    $template = '
    <nav class="navigation %1$s" role="navigation">
        <h2 class="screen-reader-text">%2$s</h2>
        <div class="nav-links">%3$s</div>
    </nav>';

    //Add this line
    $template = apply_filters('navigation_markup_template', $template);

    return sprintf( $template, sanitize_html_class( $class ), esc_html( $screen_reader_text ), $links );
}

更简单的解决方案可能只是创建自己的帖子导航功能,然后用您的功能替换主题中get_the_post_navigation的所有引用。