简体   繁体   English

wordpress 管理面板中的搜索功能不起作用

[英]The search functionality in wordpress admin panel not working

When I open my WordPress admin panel and search for a specific page, the results will always show the same pages.当我打开我的 WordPress 管理面板并搜索特定页面时,结果将始终显示相同的页面。 it seems that the search functionality is not working.似乎搜索功能不起作用。 I have tried to search for posts as well in the post section but it not working as well.我也尝试在帖子部分搜索帖子,但效果不佳。

screen shot of the search bar in the admin panel in wordpress wordpress 管理面板中搜索栏的屏幕截图

If anyone can guide me on how to fix this issue please.如果有人可以指导我如何解决这个问题,请。

add_filter('pre_get_posts','grup_search_filter_products');
function grup_search_filter_products($query) {
    // Frontend search only
    if ( $query->is_search() && !is_admin() ) {...

!is_admin() must be a`enter code here

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM