将不同的帖子放在一个页面中

时间:2015-07-06 作者:umanga shrestha

我这里有点小麻烦。我要做的就是在一个页面中将帖子发布到wordpress模板中的不同div中。enter image description here

如何在不同部门获得不同职位。

1 个回复
SO网友:Anand

在单曲中添加以下代码。php文件

<div class="post-contents">
<?php
$args = array( \'posts_per_page\' => -1,\'orderby\'=> \'date\',\'order\'=> \'DESC\',\'post_type\' => \'post\',\'post_status\'=> \'publish\');
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
    <div class="post-single">
        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                <p><?php echo $post->post_content; ?></p>
    </div>
<?php endforeach; 
wp_reset_postdata();?>
</div>

结束