Support

Account

Forum Replies Created

  • 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’)

Viewing 1 post (of 1 total)