我是 wordpress 开发的新手,所以我遇到了显示特定类别的一些帖子的问题......
就像,我正在为 post_picture 类别添加(发布)一些图像到数据库中......
现在在前端我有一个页面名称 Picture Mania 我只想显示那些我添加到 post_picture 类别中的图像......
为此,我首先安装了php-exec 插件,现在我试图通过这段代码在该页面上检索我想要的类别图像
<?php query_posts('post_picture =post_picture&showposts=5');
while (have_posts()) : the_post();
// do whatever you want
?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php cup_post_nav(); ?>
<?php comments_template(); ?>
<b><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
<?php
endwhile;
?>
它工作正常,但显示所有类别图像,所以结论我没有得到我想要的输出......
答案将不胜感激......并提前感谢您的帮助