Home › Forums › General Issues › How to Add ACF to Categories? › Reply To: How to Add ACF to Categories?
Also, for reference, here’s the code I’m working with. The second issue I’m running into is I’m not sure how to call the get_field value where it says “NEED-ACF-HERE”:
<?php // show all Video categories with posts
$custom_terms = get_terms('videos_categories',array('orderby'=>'NEED-ACF-HERE','order'=>'ASC'));
foreach($custom_terms as $custom_term) {
wp_reset_query();
$args = array('post_type' => 'videos',
'orderby' => 'date',
'posts_per_page' => 4,
'tax_query' => array(
array(
'taxonomy' => 'videos_categories',
'field' => 'slug',
'terms' => $custom_term->slug,
),
),
);
$loop = new WP_Query($args);
if($loop->have_posts()) {
?>
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.