尝试从搜索中排除图像。向函数中添加代码。php:
// Exclude images from search results - WordPress
add_action( \'init\', \'exclude_images_from_search_results\' );
function exclude_images_from_search_results() {
global $wp_post_types;
$wp_post_types[\'attachment\']->exclude_from_search = true;
}