WordPress按标题中的最后一个单词按字母顺序发布

时间:2018-10-15 15:30:45

标签: wordpress sql-order-by custom-post-type categories

我需要根据标题中的最后一个单词按字母顺序对类别内的帖子进行排序。我在网上看到了一些建议,但没有一个合适的建议。

我正在根据类别ID为类别使用自定义布局,例如名为category-3.php的文件,其中包含以下代码以显示帖子。

<?php query_posts($query_string . '&orderby=title&order=ASC');?>


        <?php 
                if ( have_posts() ) : while ( have_posts() ) : the_post();

                    get_template_part( 'content-clients', get_post_format() );

                endwhile; 

                 endif; ?>

content-clients.php然后在下面加载

<div class="blog-post"><a href="<?php the_permalink(); ?>">

                    <?php if ( has_post_thumbnail() ) {
                          the_post_thumbnail();
                        } ?>

                        <h2 class="blog-post-title"><?php the_title(); ?></h2>  </a>

                </div>

0 个答案:

没有答案