Example #1
0
    the_post();
    ?>
					<p><?php 
    the_content();
    ?>
</p>
				<?php 
}
?>

				<!-- mostra galeria página: estrtutura -->
				<?php 
if (is_page('estrutura')) {
    ?>
					<?php 
    listar_galeria(13);
    ?>
				<?php 
}
?>
	

			</div>

		</article>
	</div>

	<div class="palco colunas-03 sidebar_page">
		<section id="contato" class="sidebar_interna palco colunas-12">
			<h3 class="fontSize20">qualidade atestada</h3>
			<figure></figure><hr>
Example #2
0
	* @subpackage Coletiva_Theme
*/
get_header();
?>
<section>

	<div class="palco colunas-08">
		<article>
			<?php 
echo '<h1>' . get_the_title() . '</h1>';
if (has_post_thumbnail()) {
    the_post_thumbnail('thumbG', array('alt' => get_the_title(), 'title' => get_the_title(), 'class' => 'aligncenter capa'));
}
the_content();
if (get_post_meta(get_the_ID(), '_galeria', true) == 'on') {
    listar_galeria(get_the_ID());
}
if (get_post_meta(get_the_ID(), '_comentario', true) == 'on') {
    echo '
						<div class="comentarios">
							<div class="fb-comments" data-width="610" data-href="' . get_bloginfo('url') . '" data-numposts="5" data-colorscheme="light"></div>
						</div>
					';
}
?>
		</article>
	</div>

</section>
<?php 
get_footer();