admin管理员组文章数量:1410682
I’m converting HTML website to wordpress dynamic and having trouble getting duplicate posts. Code is following kindly please guide me in this regard m new with wordpress and PHP.
<div class="container-fluid white-bg">
<div class="container">
<div class="row pricing-main">
<div class="col-md-12 col-sm-12">
<h5 class="text-center">See what we Offer in Membership</h5>
</div>
<?php $posts = new WP_Query( array( 'post_type' => 'pricing' , 'order' => 'ASC' ) );
while($posts->have_posts()) : $posts->the_post(); ?>
<div class="col-md-8 top-spacing col-sm-8">
<p class="prcng-txt"><?php echo get_the_title();?></p>
<p><?php echo get_the_content();?>.</p>
</div>
<div class="col-md-4 top-spacing col-sm-4 hidden-xs">
<img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'full' ); ?>" class="img-border img-responsive" />
</div>
<div class="col-md-12 top-spacing col-sm-12 ">
<img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/divider.png" class="img-responsive center-block" />
</div>
<div class="clearfix"></div>
<div class="col-md-4 top-spacing col-sm-4">
<img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID), 'full' ); ?>" class="img-border img-responsive hidden-xs" />
</div>
<div class="col-md-8 top-spacing col-sm-8">
<p class="prcng-txt"><?php echo get_the_title();?></p>
<p><?php echo get_the_content();?></p>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
本文标签: Multiple post in One Loop in wordpress
版权声明:本文标题:Multiple post in One Loop in wordpress 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745046886a2639421.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论