Support

Account

Home Forums ACF PRO Taxonomy Term Image 'post_per_page' posts_per_page doesn't work

Helping

Taxonomy Term Image 'post_per_page' posts_per_page doesn't work

  • This code working with image and title but post_per_page doesn’t work and trying 'number' =>1
    is work but if any taxonomy Less than one Or equal to one Info will not be showing.

    
                    <?php 
                        $tax = 'studio';
                        $types = get_terms( array( 
                            'post_per_page' => 1,
                        )
                    );
                        foreach($types as $type) { ?>
                        
                        <?php 
                            $term_link = get_term_link( $type );
                            $image = get_field('studio_avatar', 'studio_' . $type->term_id . '' ); 
                            if ( has_term( $type->term_id, 'studio')) {
    
                                echo '<a class="author author-avt inline" href="' . esc_url( $term_link ) . '">';
                                    echo '<img class="si-user" src="' . $image['url'] . '" /> ';
                                    echo '<span>'. $type->name . '</span>';
                                echo '</a>';
                                
                                echo '<span class="posted-on inline">';
                                    echo '<i class="si-clock"></i><time>'. $post_date = get_the_date("j F Y") .'</time>'; 
                                echo '</span>';   
                            }    
                        ?>
                     <?php } ?>
    
  • Or how to showing only one more
    i need one more somone can help me?

    Thanks

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.