Viewing File: /home/cienp/public_html/inct-inovamed/wp-content/themes/inovamed/template-pesquisadores.php

<?php /* Template Name: Pesquisadores */ ?>

<?php get_header(); ?>
<?php include 'menu.php'; ?>
<section class="splash splashPesquisadores">
	<div class="wrapper grid">
		<h1 class="title"><?php echo get_field('titulopadrao'); ?></h1>
		<p class="subtitle smallWrapper"><?php echo get_field('introducao'); ?></p>
	</div>
</section>

<section class="pesquisadores">
	<ul class="wrapper grid">
		<?php 
		$new_query = new WP_Query( array(
		    'post_type'      => 'pesquisadores',
		    'orderby'        => 'menu_order',
			'status'         => 'published',
			'order'          => 'ASC',
			'posts_per_page' => '99'
		) );

		while ( $new_query->have_posts() ) : $new_query->the_post();  ?>
		
		 	<li>
		 		<a href="<?php echo get_permalink(); ?>">
			 		<div class="photo animate">
			 			<?php if (get_the_post_thumbnail( $page->ID, 'large' )) { ?>
							<?php echo get_the_post_thumbnail( $page->ID, 'large' ); ?>
						<?php }else{ ?>
							<img src="<?php echo get_template_directory_uri(); ?>/images/padrao_pesquisadores.jpg" />
						<?php } ?>
					</div>
			 		<span class="posicao">Posição</span>
					<h3><?php echo the_title(); ?></h3>
				</a>
				<div class="icones">
					<?php if (get_field('url_lattes')) { ?>
						<a class="lattes" href="<?php echo get_field('url_lattes'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/icon-lattes.svg" /></a>
					<?php } ?>
					<?php if (get_field('url_linkedin')) { ?>
					<a class="linkedin" href="<?php echo get_field('url_linkedin'); ?>"><img src="<?php echo get_template_directory_uri(); ?>/images/icon-linkedin.svg" /></a>
					<?php } ?>
				</div>
			</li>
		
		<?php endwhile;  
		wp_reset_postdata(); ?>
	</ul>
</section>



<?php get_footer(); ?>



Back to Directory File Manager