
Email Adress Encoder - content-page.php
By:
digitalCULT on
Jan 18th, 2013 | syntax:
PHP | size: 0.40 KB | hits: 9 | expires: Never
<?php
/**
* Content Page
*
* Loop content in page template (page.php)
*
* @package WordPress
* @subpackage Foundation, for WordPress
* @since Foundation, for WordPress 1.0
*/
?>
<div>
<header>
<h1><?php if (is_front_page()) { echo bloginfo('name'); ?><br /><?php echo bloginfo('description'); } else { echo the_title(); } ?></h1>
</header>
<?php the_content(); ?>
</div>