将帖子从单个类别拉到帖子

时间:2014-06-25 09:06:02

标签: wordpress web blogs posts

我想在网站上的特价商品页面上提供特价商品列表。该网站是http://www.lansdownehotelcroydon.com/local-area/special-offers/帖子ID是"特别提供"但我似乎无法在页面上显示特别优惠。

$args = array( 'post_type' => 'special_offers', 'posts_per_page' => 10 );

$ loop = new WP_Query($ args);      ?>

            

        <div class="one_half">
            <div class="paddingAll">
            <h2><a href="/contact#wpcf7-f4-p43-o1"><?php the_title(); ?></a></h2>
            <a href="/contact#wpcf7-f4-p43-o1"><?php echo the_post_thumbnail('thumbnail');?></a>
            <div class="offercontent">
                <?php the_content();?>

            </div>

            </div>
            <a class="sp-enquiry" href="/contact#wpcf7-f4-p43-o1">Book Now</a>
            </div>

        </div>

2 个答案:

答案 0 :(得分:0)

试试这个: -

$args = array( 'category_name' => 'special_offers', 'posts_per_page' => 10 );

用于获取特定类别的帖子。

答案 1 :(得分:0)

根据您设置自定义帖子类型的方式,您可能只需要更改:

$args = array( 'post_type' => 'special_offers', 'posts_per_page' => 10 );

为:

$args = array( 'post_type' => 'special_offer', 'posts_per_page' => 10 );

自定义帖子类型应该在循环中调用时以单数形式设置和引用