0

我有一些代码片段,我想检查类别是否正确以及帖子是否确实存在,目前我有一个 if_category() 函数,然后查询我所需的类别,但我认为这些是冲突的,所以我的帖子都没有对于正在显示的类别,有人可以建议我如何修复此代码吗?

PHP

<?php if(is_category('Rainwater Harvesting Product')) { ?>
            <!-- Related Projects -->
            <?php query_posts('category_name=rainwater-harvesting-project&showposts=5'); ?>
            <?php if (have_posts()) { ?>
                <div class="aside-mod related-projects">
                    <div class="curved-ctn">
                    <h2 class="module-header">Related Projects</h2>

                        <ul class="project-list clearfix">
                                <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                                    <li class="project">
                                        <a href="<?php the_permalink();?>" class="project">
                                            <?php if ( has_post_thumbnail() ) {
                                              the_post_thumbnail('thumbnail');
                                            } ?>

                                            <h3><?php the_title(); ?></h3>
                                            <!-- <i class="icon-project"></i> -->

                                        </a>
                                    </li>
                                <?php endwhile; ?>
                                <?php endif; ?>
                        </ul>
                    </div>
                </div>
            <?php } ?>
        <?php } ?>
        <?php wp_reset_query(); ?>
4

1 回答 1

0

它不起作用,因为在你 <?php query_posts('category_name=Greywater Recycling Project&showposts=5'); ?> 给 category_name,Name 而不是 category slug,query_posts 参数,category_name 只接受 slug。例如:它必须是

<?php query_posts('category_name=greywater-recycling-project&showposts=5'); ?>

更多信息在这里:http ://codex.wordpress.org/Function_Reference/query_posts

于 2013-07-10T14:53:16.877 回答