【问题标题】:Wordpress outside loop sort by category and timeWordpress 外循环按类别和时间排序
【发布时间】:2013-11-07 21:49:14
【问题描述】:

在博客之外需要一些 Wordpress 的帮助(我不是博主..)

所以我需要从我的 Wordpress 博客中获取帖子。我已经设法得到帖子,但需要按类别和时间排序。这是我的代码的一部分:

                          <div class="8u skel-cell-mainContent" id="newsfeed">

                            <!-- Main Content -->
                                <?php if ($_GET['id']) {
                                    $id = $_GET['id'];
                                    $post = get_post($id);
                                    echo "<section>";
                                    echo "<a href='javascript:history.back();'>&#8592;Tilbake</a>";
                                    echo "<header style='font-size: 30px;'>";
                                    echo "<h2>".$post->post_title."</h2>";
                                    echo "</header>";
                                    echo "<p>".$post->post_content;
                                    echo "</section>";

                                } else {
                                    while (have_posts()):

                                        the_post();
                                        echo "<section>";
                                        echo "<header style='font-size: 30px;'> ";
                                        echo the_title('<h2>', '</h2>');

                                        echo "</header>";
                                        the_excerpt('<h3>', '</h3>');
                                        $id = get_the_ID();
                                        echo "<p><a href='nyheter.php?id=".$id."#newsfeed'>Les mer...</a></p>";
                                        echo "</section>";

                                    endwhile;
                                } ?>
                        </div>
                        <div class="4u">

                            <!-- Right Sidebar -->
                            <section>
                                <header>
                                    <h2> <?php the_widget( WP_Widget_Archives, 'title=Arkiv' ); ?> </h2>
                                </header>
                            </section>
                            <section>
                                <header>
                                    <h2> <?php the_widget( 'WP_Widget_Categories', 'dropdown=1&count=1', 'title=Kategori' ); ?> </h2>
                                </header>
                            </section>



                        </div>

【问题讨论】:

    标签: php html wordpress


    【解决方案1】:

    我会开始一个新的循环,因为使用为循环制作的函数(the_content()、the_title() 等)更容易获取发布数据

    试试这个作为起点:

    <?php
        $new_loop = new WP_Query( array(
        'post_type' => 'post',
            'orderby' => 'category'
        ) );
    ?>
    
    <?php if ( $new_loop->have_posts() ) : while ( $new_loop->have_posts() ) : $new_loop->the_post(); ?>
    
    <section>
    <a href='javascript:history.back();'>&#8592;Tilbake</a>
    <header style='font-size: 30px;'>
    <h2><?php the_title();?></h2>
    </header>
    <p><?php the_content();?></p>
    </section>
    
    <?php endwhile; else: ?>
    <?php endif; ?>
    <?php wp_reset_query(); ?>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-09-25
      • 2015-02-14
      • 2018-05-18
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多