PHP 在Wordpress中按字母顺序排列的相邻帖子

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 在Wordpress中按字母顺序排列的相邻帖子相关的知识,希望对你有一定的参考价值。

function filter_next_post_sort($sort) {
  $sort = "ORDER BY p.post_title ASC LIMIT 1";
  return $sort;
}
function filter_next_post_where($where) {
  global $post, $wpdb;

  return $wpdb->prepare("WHERE p.post_title > '%s' AND p.post_type = 'post' AND p.post_status = 'publish'",$post->post_title);
}

function filter_previous_post_sort($sort) {
  $sort = "ORDER BY p.post_title DESC LIMIT 1";
  return $sort;
}
function filter_previous_post_where($where) {
  global $post, $wpdb;

  return $wpdb->prepare("WHERE p.post_title < '%s' AND p.post_type = 'post' AND p.post_status = 'publish'",$post->post_title);
}

add_filter('get_next_post_sort',   'filter_next_post_sort');
add_filter('get_next_post_where',  'filter_next_post_where');

add_filter('get_previous_post_sort',  'filter_previous_post_sort');
add_filter('get_previous_post_where', 'filter_previous_post_where');

以上是关于PHP 在Wordpress中按字母顺序排列的相邻帖子的主要内容,如果未能解决你的问题,请参考以下文章

NestJS 在 SwaggerUI 中按字母顺序排列端点

dplyr:在 R 中按字母顺序排列列

尝试在c ++中按字母顺序排列单词时出现段错误

NSPredicate 在 CoreData 中按字母顺序获取记录

我如何测试使用硒在下拉菜单中按字母顺序对项目进行排序

如何在 PHP 中按字母顺序比较 2 个字符串?