Wordpress显示数千个帖子

时间:2015-10-08 07:32:13

标签: php wordpress loops

我正在开展一个项目,我需要列出所有类别,子类别(儿童,大孩子等到大约5级)以及他们内部的帖子。目前我已经设法让网站正常运行,但问题是该网站需要几分钟才能加载。

要清楚我希望网站看起来像什么,这是一张图:

类别     子类别         Subsubcategory             内容         Subsubcategory             内容     子类别         你得到了照片

这是代码:

<?php
    function listing($parentcat, $list_id='', $list_name='', $path=false) {
        // parentcat is the desired category parent category, which is defined because the function is called a few times with different sets on the page.

        // list_id, list_name and path are used for purposes not related to the question

            echo "<ul><li name='$list_name'><h2><a href='#$list_name'>$list_name</a></h2>";
        }

        $args = array(
            'parent' => $parentcat,
            'include' => $cat_ids,
            'hide_empty' => 1,
            'orderby' => 'id'
        );

        $categories = get_categories( $args );
        echo "<ul>";
            foreach ($categories as $cat) {
                if ($cat->cat_name != 'Uncategorized') {

                    $flat_path = substr(get_category_parents($cat->cat_ID, false, ' &raquo;' ), 14);
                    $catnam = $cat->cat_name;

                    $listtitle = ($path ? $flat_path : $catnam);
                    echo ('<li name="' . $cat->cat_ID . '"><h2><a href="#' . $cat->cat_ID . '">' . $listtitle . '</a></h2>' );

                    if (get_posts( "category_name=$catnam" ) ) {
                        if (have_posts()) : while (have_posts()) : the_post();
                        if (in_category($cat->cat_ID)) {
                                echo '<ul><li><div>';
                                    the_content();
                                echo '</div></li></ul>';
                        } endwhile;
                        else :
                        _e('Empty list');
                        endif;
                    }

                    // Here's a recursive call for the function
                    listing($cat->cat_ID);
                    echo '</li>';
                }
            }
        echo '</ul>';
    }
    ?>

2 个答案:

答案 0 :(得分:1)

您可能缺少帖子的'posts_per_page'

在这里查看http://codex.wordpress.org/Function_Reference/get_posts

&安培;

类别

'number'

在这里查看http://codex.wordpress.org/Function_Reference/get_categories

答案 1 :(得分:0)

找到解决方案!我会自己回答,所以如果其他人需要类似的东西,答案就在这里。

基本上,重点是首先创建一个包含所有类别的数组。之后,可以简单地遍历数组。这样我们就可以避免递归使用The Loop,这可能是之前解决方案中最大的问题。

即使这个解决方案真的很慢,但与上一个相比有了令人难以置信的改进。第一个想法在大约30秒后超时之前加载了几百个帖子。这个在5-10秒内得到整个网站(大约1500个帖子)。速度很糟糕,但随着我们网站的使用方式以及将所有内容划分为单独帖子的附加功能超出了速度问题。

$categories = get_categories('orderby=id');

    $cats_by_parent = array();

    foreach ($categories as $cat) {
        $parent_id = $cat->category_parent;
        if (!array_key_exists($parent_id, $cats_by_parent)) {
            $cats_by_parent[$parent_id] = array();
        }
        $cats_by_parent[$parent_id][] = $cat;
    }

    $posts = get_posts(['posts_per_page' => 10000000]);
    $posts_by_cats = array();

    foreach ($posts as $post) {
        $cat_id = wp_get_post_categories($post->ID)[0];
        $posts_by_cats[$cat_id] = $post->post_content;
    }

// Loop through the array and print with:
    echo $posts_by_cats[$cat->cat_ID];