0

我正在尝试按类别在每月存档中对帖子进行分组,但不知道如何实现。

有人可以帮我吗?

问候


这是我在 archive.php 中使用的 php 代码

<?php
        $terms = get_terms("publicationcat");
        $count = count($terms);
        if ( $count > 0 ){
            foreach ( $terms as $term ) {
                echo "<div class=\"publication-area\">";
                echo '<h3 class="term-heading">' . $term->name . '</h3>';
                echo "<div class=\"publication-txt\">";
                echo "<ul>";
                while ( have_posts() ) : the_post();
                echo "<li><a target=\"_blank\" href=\"" . wp_get_attachment_url(get_post_meta($post->ID, 'document_file_id', true)) . "\">".$post->post_title."</a></li>";
                endwhile; 
                echo "</ul>";
                echo "</div>";
                echo "</div>";
            }
        }
        ?>

唯一的问题是它为所有术语显示相同的帖子标题..

4

1 回答 1

0

当您遍历每个类别中的帖子时,您不会只找到与该类别相关的帖子,而是遍历每个帖子。以下(未经测试,如果您遇到错误,请发表评论)应该对您的问题进行排序。

但是请注意,如果帖子被分配到多个类别,您仍然可能会得到一些重复。

检查每个帖子以确保它在所需的类别中。好点 - 只有一个查询。坏点 - 循环遍历每只猫的所有帖子。

<?php
$terms = get_terms('publicationcat');

if(!empty($terms)) : foreach($terms as $term) :
?>
        <div class="publication-area">

            <?php sprintf('<h3 class="term-heading">%1$s</h3>', $term->name); ?>
            <div class="publication-txt">

                <?php if($my_query->have_posts()) : ?>

                    <ul>

                    <?php if(in_category($term->slug)) : ?>

                    <?php while($my_query->have_posts()) : $my_query->the_post(); ?>

                            <?php $link = wp_get_attachment_url(get_post_meta($post->ID, 'document_file_id', true)); ?>
                            <li><a target="_blank" href="<?php echo ($link !== '') ? $link : ''; ?>">
                                <?php the_title(); ?>
                            </a></li>

                        <?php endwhile; ?>

                    <?php endif; ?>

                    </ul>

                <?php endif; ?>

            </div>

        </div>
<?php
    endforeach;
endif;
?>

重新查询帖子并输出所有抓取的内容。好点 - 只提取循环类别所需的帖子。坏点 - 大量查询,如此多的查询可能会减慢您的网站速度。

<?php
$terms = get_terms('publicationcat');

if(!empty($terms)) : foreach($terms as $term) :
?>
        <div class="publication-area">

            <?php sprintf('<h3 class="term-heading">%1$s</h3>', $term->name); ?>
            <div class="publication-txt">

                <?php
                $args = array(
                    'cat' => $term->term_id
                );
                $my_query = new WP_Query($args);
                ?>
                <ul>
                    <?php if($my_query->have_posts()) : while($my_query->have_posts()) : $my_query->the_post(); ?>

                            <?php $link = wp_get_attachment_url(get_post_meta($post->ID, 'document_file_id', true)); ?>
                            <li><a target="_blank" href="<?php echo ($link !== '') ? $link : ''; ?>">
                                <?php the_title(); ?>
                            </a></li>

                        <?php endwhile; ?>
                    <?php endif; ?>
                    <?php wp_reset_query(); ?>

                </ul>

            </div>

        </div>
<?php
    endforeach;
endif;
?>
于 2013-03-21T11:56:45.997 回答