1

这是一个自我问答。

通常在 WordPress 中,您使用页面层次结构来构建项目结构。例如,在做投资组合网站时,这很常见:

  • 工作
    • 宝马
      • 楷模
        • 3系列
        • 5系列
    • 奥迪
      • 楷模
        • A3
        • A4

因此,当用户在 3 系列页面上时,您通常希望有一个指向“下一个汽车制造商”的链接。如果没有插件,你怎么能做到这一点?

4

1 回答 1

2

这些功能允许您设置要用于确定下一页的深度。因此,在问题中,用户使用的是“3 系列”,因此深度为 2。因此,返回的链接将是“Audi”页面。

它在您的模板中像这样使用(我的示例是使用图像作为链接文本):

$nextIMG = '<img src="'.get_template_directory_uri().'/images/icon-nav-right.png"/>';            
echo next_project_link($nextIMG); 

并将其放在functions.php中:

 /*
 * Next Project Link
 */
    function next_project_link($html) {
        global $post;

        // Change this to set what depth you want the next page of
        $parent_depth = 2;

        $ancestors = get_post_ancestors($post);     
        $current_project_id = $ancestors[$parent_depth-1];

        // Check for cached $pages
        $pages = get_transient( 'all_pages' );
        if ( empty( $transient ) ){
            $args = array(
                'post_type'         => 'page',
                'order'             => 'ASC',
                'orderby'           => 'menu_order',
                'post_parent'       => $ancestors[$parent_depth],
                'fields'            => 'ids',
                'posts_per_page'    => -1
            );
            $pages = get_posts($args);   
            set_transient('all_pages', $pages, 10 );
        }       

        $current_key = array_search($current_project_id, $pages);
        $next_page_id = $pages[$current_key+1];

        if( isset($next_page_id) ) {
            // Next page exists
            return '<a class="next-project" href="'.get_permalink($next_page_id).'">'.$html.'</a>';
        }

    } 


/*
 * Previous Project Link
 */
    function previous_project_link($html) {
        global $post;

        // Change this to set what depth you want the next page of
        $parent_depth = 2;

        $ancestors = get_post_ancestors($post);
        $current_project_id = $ancestors[$parent_depth-1];

        // Check for cached $pages
        $pages = get_transient( 'all_pages' );
        if ( empty( $transient ) ){
            $args = array(
                'post_type'         => 'page',
                'order'             => 'ASC',
                'orderby'           => 'menu_order',
                'post_parent'       => $ancestors[$parent_depth],
                'fields'            => 'ids',
                'posts_per_page'    => -1
            );
            $pages = get_posts($args);   
            set_transient('all_pages', $pages, 10 );
        }       

        $current_key = array_search($current_project_id, $pages);
        $prev_page_id = $pages[$current_key-1];

        if( isset($prev_page_id) ) {
            // Previous page exists
            return '<a class="previous-project" href="'.get_permalink($prev_page_id).'">'.$html.'</a>';
        }

    }
于 2013-04-05T19:01:23.280 回答