可以将名为“ofertas”的自定义帖子类型限制为1吗?仅适用于作者。
我安装了Wordpress 3.8并且插件不起作用(限制帖子创建1.4,Bainternet帖子创建限制3.1和自定义帖子限制3.6)。
有什么想法吗?感谢
答案 0 :(得分:0)
我不知道你究竟想要什么,但你可以通过这段代码限制你的帖子: -
<?php query_posts($query_string.'limit=1'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
//your stuff
<?php endwhile; ?>
<?php endif; ?>