HEX
Server: Apache
System: Linux web5.visualcom.es 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ensaco.es (10019)
PHP: 8.3.32
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/ensaco.es/httpdocs/wp-content/plugins/bb-plugin/modules/search/includes/results.php
<div class="fl-search-results"<?php FLBuilder::print_schema( ' itemscope="itemscope" itemtype="https://schema.org/Blog"' ); ?>>
	<?php
	if ( $query->have_posts() ) :
		while ( $query->have_posts() ) :

			$query->the_post();
			?>

			<div class="fl-search-post-item">
				<?php if ( $settings->show_image ) : ?>
				<div class="fl-search-post-image">
					<?php $module->render_featured_image( get_the_id() ); ?>
				</div>
				<?php endif; ?>

				<div class="fl-search-post-text">

					<div class="fl-search-post-title" itemprop="headline">
						<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
					</div>

					<?php if ( $settings->show_content ) : ?>
					<div class="fl-search-post-content">
						<?php FLBuilderLoop::the_excerpt(); ?>
					</div>
					<?php endif; ?>

				</div>

			</div>

			<?php

		endwhile;

	else :
		?>
		<div class="fl-search-no-posts">
			<p><?php echo $settings->no_results_message; ?></p>
		</div>
		<?php

	endif;

	?>
</div>
<div class="fl-clear"></div>

<?php wp_reset_postdata(); ?>