2014-01-15 36 views
0

可能会限制创建名为“ofertas”的自定义帖子类型为1吗?仅限于作者。自定义帖子类型作者数量限制

我已经安装了Wordpress 3.8并且插件不工作(限制创建1.4,Bainternet创建限制3.1和自定义限制3.6)。

有什么想法?感谢

回答

0

我不知道你真正想要的,但你可以通过这个代码限制你的信息: -

<?php query_posts($query_string.'limit=1'); ?> 
      <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

      //your stuff 

    <?php endwhile; ?> 
<?php endif; ?> 

You can see more loop here

相关问题