如何在Wordpress的新闻页面上显示帖子?

时间:2014-06-02 07:15:09

标签: php wordpress

如果我制作自定义帖子,我可以轻松完成,但这样做会使原始帖子类型未使用。我想使用它而不是构建一个新的自定义帖子类型。我已经制作了page-news.php,但它无法显示在此页面上。目前,帖子正在出现 www.somedomain.com/posts_title格式我希望它是www.somedomain.com/news/posts_title

这是我的page.news.php

<?php 
/*
  Template Name: News
*/
?>
<?php get_header();?>
<div class="mainwrapper">
<!-- slide -->
</div>

<div class="content content-topone">
    <div class="container-fluid">
        <div class="row portfolio">
            <?php $loop = new WP_Query( array( 'post_type' => '', 'posts_per_page' => -1 ) ); ?>
            <?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
            <div class="col-lg-3 col-md-4 col-sm-6 col-xs-12 portfoliobox">
                <div class="thumbnail">
                    <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
                    <?php 
                    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                        the_post_thumbnail();
                    } else {
                        $img = '/img/responsive-webness.png"';
                       $attrib = ' class="' . 'img-responsive' . '" alt="' . ' '. '"/>';
                       $begin = '<img src="';
                       $getpath = get_template_directory_uri();
                        echo $begin . $getpath. $img . $attrib;
                      }
                    ?>
                    </a>

                    <p><?php the_title(); ?></p>

                    <p><?php the_content(); ?></p>
                </div><!-- .thumbnail -->
          </div>
          <?php endwhile; wp_reset_query(); ?>
          <div class="clear"></div>
       </div>
    </div>     
</div>
<?php get_footer();?>

1 个答案:

答案 0 :(得分:0)

改变这个:

$loop = new WP_Query( array( 'post_type' => '', 'posts_per_page' => -1 ) );

对此:

$loop = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => -1 ) );

因此,您可以在新闻页面中显示原生posts。所有你需要做的只是循环

if ( $loop->have_posts() ) {
    while ( $loop->have_posts() ) {
        $loop->the_post();
        ?><h2><?php the_title(); ?></h2><?php
    }
}

要显示任何自定义帖子类型,只需更改数组中的post_type即可。阅读更多on Codex

要更改URI格式,请转到WordPress信息中心,然后从菜单导航至Settings->Permalink,然后选择Custom Structure单选按钮并输入{{1}在文本框中,然后保存更改。 Check this了解更多信息。

enter image description here