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’)
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.