Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
themes
/
vantage
/
loops
/
Editing: loop-circleicon.php
<?php /** * Loop Name: Circle Icons */ ?> <?php if ( have_posts() ) { $i = 0; ?> <div id="vantage-circleicon-loop" class="vantage-circleicon-loop circleicon-loop-columns-<?php echo siteorigin_setting( 'blog_circle_column_count' ); ?>"> <?php while ( have_posts() ) { the_post(); $i++; $image = wp_get_attachment_image_src( get_post_thumbnail_id() ); the_widget( 'Vantage_CircleIcon_Widget', array( 'in_post_loop' => siteorigin_setting( 'blog_featured_image_type' ) == 'none' ? false : true, 'image' => ! empty( $image[0] ) ? $image[0] : false, 'title' => get_the_title(), 'text' => get_the_excerpt(), 'more' => siteorigin_setting( 'blog_read_more' ) ? esc_html( siteorigin_setting( 'blog_read_more' ) ) : __( 'Continue reading', 'vantage' ), 'more_url' => get_permalink(), 'all_linkable' => true, 'icon_position' => 'top', ) ); if ( $i % siteorigin_setting( 'blog_circle_column_count' ) == 0 ) { ?> <div class="clear"></div> <?php } } ?> </div> <?php vantage_content_nav( 'nav-below' ); } else { get_template_part( 'no-results' ); }
Save
Cancel