HEX
Server: Apache
System: Linux utech.securedservers.info 4.18.0-553.109.1.el8_10.x86_64 #1 SMP Mon Mar 2 09:33:18 EST 2026 x86_64
User: autoaccidentes (1023)
PHP: 8.3.23
Disabled: NONE
Upload Files
File: /home/autoaccidentes/www/wp-content/themes/vantage/loops/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' );
}