Support

Account

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()) {
    ?>