小编Mr *_*ets的帖子

下划线_s the_posts_navigation WordPress不更新文本

我们似乎无法获得template-tags.php the_posts_navigation函数来关注基本编辑:

if ( ! function_exists( 'the_posts_navigation' ) ) :
/**
 * Display navigation to next/previous set of posts when applicable.
 *
 * @todo Remove this function when WordPress 4.3 is released.
 */
function the_posts_navigation() {
    // Don't print empty markup if there's only one page.
    if ( $GLOBALS['wp_query']->max_num_pages < 2 ) {
        return;
    }
    ?>
    <nav class="navigation posts-navigation" role="navigation">
        <h2 class="screen-reader-text"><?php _e( 'Posts navigation', 'mytheme' ); ?></h2>
        <div class="nav-links">

            <?php if ( get_next_posts_link() ) : ?>
            <div class="nav-previous"><?php next_posts_link( …
Run Code Online (Sandbox Code Playgroud)

wordpress underscores-wp

2
推荐指数
1
解决办法
4815
查看次数

标签 统计

underscores-wp ×1

wordpress ×1