Support

Account

Home Forums Add-ons Repeater Field have_rows() not working on category loop Reply To: have_rows() not working on category loop

  • I believe I’ve solved this issue, for those of you who are using custom post types, you will need to add custom post type to the wp query for ACF to work properly in Category Results.

    function sdeeds_q_my_custom_post_type ($query) {
    if(
    empty($query->query[‘post_type’])
    or $query->query[‘post_type’] === ‘post’
    ){
    $query->set(‘post_type’, array(‘post’, ‘page’, ‘CUSTOM_POST_TYPE_SLUG’));
    }
    }

    add_action(‘pre_get_posts’, ‘sdeeds_q_my_custom_post_type’)