Пример #1
0
			 
		<?php 
}
?>
		</nav>
	</header>
	</div>
	<?php 
if ($GLOBALS['landing']) {
    ?>
	<!--// MESSAGING //-->
	<div id="landing-message-wrapper" class="content-wrapper">
		<div id="landing-message" class="content-container">
			<h2><?php 
    $phrases = get_posts(array('showposts' => -1, 'post_type' => 'phrase'));
    echo DEVONA_translate($phrases[array_rand($phrases)]->post_content);
    ?>
</h2>
		</div>
	</div>
	<?php 
}
?>
			
	<!--// SITE WRAPPER //-->
	<div id="site-wrapper" class="content-wrapper <?php 
echo $GLOBALS['white_page'] ? 'white' : 'black';
?>
">

Пример #2
0
		<!--// CONTENT //-->
		<div id="compost-content-container"  class="content-container">
	
		<?php 
if (have_posts()) {
    ?>
			<?php 
    while (have_posts()) {
        the_post();
        ?>

			<!--// OVERVIEW //-->
			<div id="compost-overview" class="overview" >
				<?php 
        echo DEVONA_translate(get_the_content());
        ?>
			</div>
			
			<center>

			<!--// GALLERY //-->
				<div id="compost-masonry-wrapper" class="masonry-wrapper">
					<?php 
        echo DEVONA_rewriteGallery(get_post_meta(get_the_ID(), 'compost_gallery', true));
        ?>
					<br class="clearfix" />
				</div>
			</center>
			<?php 
    }