2014-01-15 60 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

相關問題