WordPress将附件媒体Alt添加到前端搜索

时间:2018-07-21 00:16:24

标签: wordpress search

我正在尝试找到一种将媒体alt标签添加到前端搜索中的方法。到目前为止,我已经找到了以下内容,但是我仍然无法弄清楚如何将alt标签包含到query_set中:

function attachment_search( $query ) {
    if ( $query->is_search ) {
       $query->set( 'post_type', array( 'post', 'attachment' ) );
       $query->set( 'post_status', array( 'publish', 'inherit' ) );
    }
    return $query;
}
add_filter( 'pre_get_posts', 'attachment_search' );

1 个答案:

答案 0 :(得分:0)

尝试使用此功能。

function attachment_search( $query ) {
    if ( $query->is_search ) {
       $query->set( 'post_type', array( 'post', 'attachment' ) );
       $query->set( 'post_status', array( 'publish', 'inherit' ) );
       $meta_query_args = array(
          array(
            'key' => '_wp_attachment_image_alt',
            'value' => $query->query_vars['s'] = '',
            'compare' => 'LIKE'
          )
        );
        $query->set('meta_query', $meta_query_args);
    }
    return $query;
}
add_filter( 'pre_get_posts', 'attachment_search' );