Viewing File: /home/cienp/public_html/inct-inovamed/wp-content/themes/inovamed/template-projetos.php
<?php /* Template Name: Projetos */ ?>
<?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="projetos">
<ul class="wrapper" id="ultimosProjetos">
<?php
$new_query = new WP_Query( array(
'post_type' => 'projetos',
'orderby' => 'menu_order',
'status' => 'published',
'orderby' => 'post_date',
'order' => 'DESC',
'posts_per_page' => 3,
) );
while ( $new_query->have_posts() ) : $new_query->the_post(); ?>
<li class="animate">
<a class="grid" href="<?php echo get_permalink(); ?>">
<div class="photo animate">
<h2><?php echo the_title(); ?></h2>
<div class="gradient"></div>
<?php echo get_the_post_thumbnail( $page->ID, 'large' ); ?>
</div>
<div class="texto">
<?php echo the_excerpt(); ?>
<span>Ler mais ></span>
</div>
</a>
</li>
<?php endwhile;
wp_reset_postdata(); ?>
</ul>
<?php $count = wp_count_posts( 'projetos' )->publish;
if($count > 3) {
echo '<div class="wrapper"><span class="carregaPosts carregaProjetos botao">Carregar mais</span></div>';
} ?>
</section>
<?php get_footer(); ?>
Back to Directory
File Manager