コード例 #1
0
ファイル: two-column.php プロジェクト: realbig/TH_APPLEGATE
						<?php 
    the_post_thumbnail('full');
    ?>
					</div>
				<?php 
}
?>

				<div class="page-copy row">
					<div class="columns small-12 medium-6">
						<?php 
echo apply_filters('the_content', get_post_meta(get_the_ID(), 'content_left', true));
?>
					</div>

					<div class="columns small-12 medium-6">
						<?php 
echo apply_filters('the_content', get_post_meta(get_the_ID(), 'content_right', true));
?>
					</div>
				</div>
			</div>

			<?php 
applegate_template('technical-documents');
?>
		</div>
	</section>

<?php 
get_footer();
コード例 #2
0
ファイル: search.php プロジェクト: realbig/TH_APPLEGATE
 *
 * @since   0.1.0
 * @package Applegate
 */
// Don't load directly
if (!defined('ABSPATH')) {
    die;
}
get_header();
?>
	<section id="page-search" class="page-content">
		<div class="row">
			<?php 
if (have_posts()) {
    while (have_posts()) {
        applegate_template('post-content');
    }
} else {
    ?>
			<div class="small-12 columns">
				<p class="no-results">
					No results found
				</p>
			</div>
			<?php 
}
?>
		</div>
	</section>
<?php 
get_footer();