문제

It's possible limit creation of custom post type named "ofertas" to 1? Only for authors.

I have installed Wordpress 3.8 and plugins don't work (Limit Post Creation 1.4, Bainternet Post Creation Limits 3.1 and Custom Post Limits 3.6).

Any idea? thanks

도움이 되었습니까?

해결책

I dont know what do you want actually but you can limit your post through this code:-

<?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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top