HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/incastiglionfiorentino/wp-content/themes/amplify/taxonomy-aziende.php
<?php
/**
 * The template for displaying Taxonomies result pages.
 *
 * Used to display archive-type pages if nothing more specific matches a query.
 * For example, puts together date-based pages if no date.php file exists.
 *
 */
get_header(); ?>

<div id="main_container">

<!-- IE7 float fix --><!--[if lt IE 7]><span class="iefix">.</span><![endif]-->

	<div class="main">
	
			<div class="entries_full">
			
				<div class="entry_full">
				
				<div class="box_twothirds mt30 pr60">

 <!-- ARCHIVE POSTS BEGIN -->
 
<?php
	query_posts($query_string . '&orderby=rand');
	/* Queue the first post, that way we know
	 * what date we're dealing with (if that is the case).
	 *
	 * We reset this later so we can run the loop
	 * properly with a call to rewind_posts().
	 */
	if (have_posts()) :
?>

			<div class="archive_header">
				<?php
					$category_description = category_description();
					if ( ! empty( $category_description ) )
						echo '' . $category_description . '';
				?>
			</div>

<?php $count = 0; ?>
<?php while ( have_posts() ) : the_post(); ?>
 <!-- displays the blog posts -->
 <?php $count++; if($count > 3) { $count = 1; } ?>
 
    <h3 class="<?php if($count > 1) echo "mt25 "; ?>mb12"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
	<?php if(get_field('large_image_value') != NULL || get_field('fullsize_value') != NULL)
    { ?>
    <div class="mag_blog"><!-- magnifying glass div -->
    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><img src="<?php echo get_template_directory_uri(); ?>/scripts/timthumb.php?src=<?php if(get_field('large_image_value') != NULL) {echo get_field('large_image_value');} else {echo get_field('fullsize_value');} ?>&amp;h=213&amp;w=600&amp;zc=1" alt="<?php the_title(); ?>" /></a>
    </div><!-- end magnifying glass div -->
    <?php } ?>
        <div id="info-box-elenco">
                                    
		<?php
        
        $struttura_id=get_the_ID();
		$only_tel = 0;  
		  echo "<div id=\"indirizzo-sitoweb-struttura-elenco\">";
        
        
          $metakey = 'indirizzo';
          $t = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s ORDER BY meta_value ASC", $struttura_id, $metakey) );
          if ($t) {
            foreach ($t as $s) {
				if (($s != "") && ($s != " ") && ($s != NULL))
				{	
              		echo "<div style=\"float: left; margin-right: 6px; margin-top: -3px;\"><img src=\"" . get_template_directory_uri() ."/images/address.jpg\" /></div><div class=\"meta\" style=\"margin-bottom: 20px;\">" . $s . "</div>";
				}else
				{
					$only_tel = $only_tel + 1;  
				}
				
            }
          }else
		  {
			$only_tel = $only_tel + 1;  
		  }
       
     
          $metakey = 'sito_web';
          $t = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s ORDER BY meta_value ASC", $struttura_id, $metakey) );
          if ($t) {
            foreach ($t as $s) {
				if (($s != "") && ($s != " ") && ($s != NULL))
				{				
              		echo "<div style=\"float: left; margin-right: 6px; margin-top: -3px;\"><img src=\"" . get_template_directory_uri() ."/images/web.jpg\" /></div><div class=\"meta\" style=\"margin-bottom: 20px;\"><a href=\"" . $s . "\" target=\"blank\" rel=\"nofollow\">" .$s. "</a></div>";
				}else
				{
					$only_tel = $only_tel + 1;  
				}
            }
          }else
		  {
			$only_tel = $only_tel + 1;  
		  }
		  
		  echo "</div>";
		  
		  
		  if($only_tel==2)
		  {
			  echo "<div id=\"telefono-struttura-elenco-only\">";
		  }else{
			  echo "<div id=\"telefono-struttura-elenco\">";
		  }
		  
		  $metakey = 'telefono';
          $t = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s ORDER BY meta_value ASC", $struttura_id, $metakey) );
          if ($t) {
            foreach ($t as $s) {
				if (($s != "") && ($s != " ") && ($s != NULL))
				{				
              		echo "<div style=\"float: left; margin-right: 6px; margin-top: -3px;\"><img src=\"" . get_template_directory_uri() ."/images/phone.jpg\" /></div><div class=\"meta\" style=\"margin-bottom: 20px;\">" . $s . "</div>";
				}
            }
          }
      
          $metakey = 'telefono_secondario';
          $t = $wpdb->get_col($wpdb->prepare("SELECT DISTINCT meta_value FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = %s ORDER BY meta_value ASC", $struttura_id, $metakey) );
          if ($t) {
            foreach ($t as $s) {
              if (($s != "") && ($s != " ") && ($s != NULL))
              {
                echo "<div style=\"float: left; margin-right: 6px; margin-top: -3px;\"><img src=\"" . get_template_directory_uri() ."/images/phone.jpg\" /></div><div class=\"meta\" style=\"margin-bottom: 20px;\">"  . $s . "</div>" ;
              }
            }
          }
  
    	echo "</div>";
	
        ?>
	</div>

    <div id="contenuto">
             <?php global $more; $more = false; ?><?php the_content($info); ?><?php $more = true; ?>
     </div>      				
	 <div class="bar mt25 mb30"></div>

 <!-- ARCHIVE POSTS END -->
 <?php endwhile;
  if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
  else { ?>
<?php /* Display navigation to next/previous pages when applicable */ ?>
<?php if (  $wp_query->max_num_pages > 1 ) : ?>
				<?php next_posts_link( __( '&larr; Older posts', 'amplify' ) ); ?>&nbsp;
				<?php previous_posts_link( __( 'Newer posts &rarr;', 'amplify' ) ); ?>
<?php endif; ?>

<?php } ?>

	<?php else : ?>

<?php /* If there are no posts to display, such as an empty archive page */ ?>
<h1><?php _e( 'Not Found', 'amplify' ); ?></h1>
<p><?php _e( 'Apologies, but no results were found for that search!.', 'amplify' ); ?></p>

	<?php endif; ?>

				</div>

<!-- Begin Sidebar -->
<?php include('sidebar.php'); ?>
<!-- end sidebar -->
							
				<div class="clear"></div>

				</div><!-- end div.entry -->
				
			</div><!-- end div.entries -->

	<div class="clear"></div>
		
	</div><!-- end div#main -->
	
	<div class="clear"></div>
	
</div><!-- end div#main_container-->

<?php get_footer(); ?>