编程语言
首页 > 编程语言> > php-在两页上显示WordPress帖子

php-在两页上显示WordPress帖子

作者:互联网

我的网站上有三页.我们称它们为home,page2和page3.
我的“主页”页面设置为静态首页.我的“ page2”设置为博客页面.

我想要的是以下内容:

我希望page2显示具有特定类别(已知ID)的博客文章.

我希望page3显示具有特定类别(已知ID)的博客文章.

仅显示具有特定类别的帖子的PHP代码(或者在我的情况下,实际上显示不包括两个类别的帖子)如下:

<?php query_posts($query_string . '&cat=-3,-8'); ?>
<?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
        <div class="post" id="post-<?php the_ID(); ?>">
        <h3><a href="<?php the_permalink() ?>" rel="bookmark"
            title="Permanent Link to <?php the_title_attribute(); ?>">
            <?php the_title(); ?></a></h3>
        <?php the_excerpt('Read the rest of this entry &raquo;'); ?>
        </div><!-- /.post-->

现在,在我的page.php中,我具有以下代码来显示具有一个类别的帖子:

<?php
    // BEGIN IF PAGE is newspaper articles page
    if ( is_page('newspaper') ) {

        //BEGIN POST REGION

        query_posts($query_string . '&cat=8'); ?>
        <?php if (have_posts()) : ?>
            <?php while (have_posts()) : the_post(); ?>
                <div class="post" id="post-<?php the_ID(); ?>">
                <h3><?php the_title(); ?></h3>

                <?php the_content('Read more &raquo;'); ?>


                </div><!-- /.post-->

            <?php endwhile; ?>

        <?php else : ?>

        <?php endif; ?>

        <?php

    } //end if is_page
?>

但是它没有在报纸页面(或本问题的第3页)中显示适当的帖子.但是,它确实适用于文章页面(主index.php博客页面).

编辑:我也尝试了以下方法(但不起作用).我把它放在index.php文件中:

<?php
if ( is_page('newspaper') || is_home() ) { // START if is home

?>
<?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
        <div class="post" id="post-<?php the_ID(); ?>">
            <h3><a href="<?php the_permalink() ?>" rel="bookmark"
                title="Permanent Link to
                <?php the_title_attribute(); ?>">
                <?php the_title(); ?></a></h3>

            <!--<p><?php the_time('F jS, Y') ?> <?php //the_author() ?></p>-->

            <?php the_excerpt('Read the rest of this entry &raquo;'); ?>


        </div><!-- /.post-->

    <?php endwhile; ?>

<?php else : ?>

<?php endif; ?>

<?php
} //end if is_home() or is_page()
?>

同样,这会在博客主页面上显示帖子,但在报纸页面上不会显示任何帖子…

因此,问题很简单(我认为).如何在博客主页面以外的其他页面上显示帖子?

谢谢!
阿米特

解决方法:

而不是排除类别并排除页面并更改标准的Wordpress循环,请使用一个新查询,如下所示:

<?php $my_query = new WP_Query('category_name=mycategory&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>">
<?php the_title(); ?></a></h3>
<?php the_excerpt('Read the rest of this entry &raquo;'); ?>
<?php endwhile; ?>

可以在标准WP循环内使用它,并且可以在页面/帖子或页面模板中多次使用,而不会发生冲突. (启用php执行以在页面/帖子编辑器中使用它). Function Reference/WP Query « WordPress Codex

这也可以很好地用于使用页面模板来创建带有博客文章的不同页面:Page Templates « WordPress Codex,但不要忘记,WP也使用类别页面,具体取决于您的主题:Category Templates « WordPress Codex.

标签:loops,posts,wordpress,php
来源: https://codeday.me/bug/20191209/2097474.html