WordPress搜索只搜索标题不搜内容

2024年10月14日 建站教程

WordPress搜索在默认情况下是标题和内容一起搜索的,那么如何实现只搜索标题不搜内容呢?下面web建站小编给大家简单介绍一下实现方法!

在functions.php中添加下面的代码:

function post_search_columns_callback($search_columns) {
  return ['post_title'];
}
add_filter('post_search_columns', 'post_search_columns_callback');

本文链接:http://so.lmcjl.com/news/15365/

展开阅读全文
相关内容