ACF按中继器字段的子字段过滤自定义帖子

时间:2016-12-26 07:00:47

标签: mysql ajax wordpress custom-post-type advanced-custom-fields

我正在关注ACF文档中的官方guide,但未能做到正确。我正在使用高级自定义字段和自定义帖子类型UI插件。

我有一个名为材料的自定义帖子类型,每种材料都有一个文件转发器字段,其中一个子字段是标题。我想根据标题查询帖子,并使用ajax将结果放到页面上。

这是我的functions.php:

function materialsSearchAjax() {

  $html = "";
  $keyword = $_POST['keyword'];
  // args
  $args = array(
    'numberposts'   => -1,
    'posts_per_page' => -1,
    'post_type'     => 'materials',
    'meta_key'    => 'type',
    'meta_value'    => 'students',
    'meta_query'    =>
        array(
            'key'       => 'files_%_title',
            'compare'   => 'LIKE',
            'value'     => $keyword,
    )
  );

  $query = new WP_Query( $args );
  $posts = array();
  $html .= '<div class="Materials-students">';

  while( $query->have_posts() ) : $query->the_post();
    $html .= '<div class="Files-list u-padding-left--12">';
      if( have_rows('files') ){
        while ( have_rows('files') ) : the_row();
          $html .= '<div class="Files-item u-margin-right--30 u-margin-bottom--18">';
          $html .= '<div class="Files-itemImage"></div>';
          $html .= '<a href="' . the_sub_field("document") . '" target="_blank" class="Files-itemLink">';
          $html .= the_sub_field('title');
          $html .= '</a>';
          $html .= '</div>';
        endwhile;
      }
    $html .= '</div>';
  endwhile;

  $html .= '</div>';

  wp_reset_query();
  return $html;
}

// filter
function materials_where( $where ) {

    $where = str_replace("meta_key = 'files_%", "meta_key LIKE 'files_%", $where);

    return $where;
}

function igs_scripts_styles() {
  wp_enqueue_script( 'ajaxMaterialsSearch', get_template_directory_uri() . '/assets/scripts/ajaxMaterialsSearch.js', array(), false, true );
  wp_localize_script( 'ajaxMaterialsSearch', 'ajax_data_object', array( 'url' => admin_url( 'admin-ajax.php' )) );
}

add_action('wp_ajax_nopriv_materialsSearchAjax', 'materialsSearchAjax');
add_action('wp_ajax_materialsSearchAjax', 'materialsSearchAjax');
add_filter('posts_where', 'materials_where');
add_action('wp_enqueue_scripts', 'igs_scripts_styles');

这是我的ajax:

(function($) {
  // Trigger submit
  $('.Search-magnifier').on('click', function(){
    var $form = $(this).parent();
    $($form).submit();
  });

  $('.Search-form').on('submit', function(event){
    event.preventDefault();
    var $form = $(this);
    var searchKeyword = $($form).find('input[type="search"]').val();
    console.log('keyword: ' + searchKeyword);
    $.ajax({
      type: 'POST',
      url: ajax_data_object.url,
      data: {action: 'materialsSearchAjax', keyword: searchKeyword},
      success: function(textStatus) {
        // update the content
        console.log(textStatus);
        $('.Materials-students').replaceWith(textStatus);
      },
      error: function(XMLHttpRequest, textStatus, errorThrown) {
        console.log(errorThrown);
      }
    });
  });
})(jQuery);

如果我在不过滤标题的情况下查询所有材料,那么ajax和查询工作正常,因此唯一认为错误的是查询本身。我按照指南,但被困了几个小时。

1 个答案:

答案 0 :(得分:0)

我猜你唯一的错误是meta_query本身。除了(可选)第一级relation之外,meta_query必须是一个数组数组。尝试:

$args = array(
    'posts_per_page' => -1,
    'post_type'      => 'materials',
    'meta_key'       => 'type',
    'meta_value'     => 'students',
    'meta_query'     => array(
        array(
            'key'     => 'files_%_title',
            'compare' => 'LIKE',
            'value'   => $keyword,
        )
    )
);

来自WP Codex

  

meta_query(数组) - 包含一个或多个数组,其中包含以下键:[...]

我复制了你的案例(Ajax除外)并且查询运行正常,所以我想这也适用于Ajax调用。