21 lines
628 B
PHP
21 lines
628 B
PHP
<?php
|
|
/**
|
|
* The default template for displaying content
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Eleven
|
|
* @since Twenty Eleven 1.0
|
|
*/
|
|
?>
|
|
|
|
<article id="post-<?php echo $id ?>" <?php post_class('invisible-page'); ?>>
|
|
<header class="entry-header">
|
|
<h2 class="entry-title"><a href="<?php echo get_permalink($id)?>"><?php echo get_the_title($id); ?></a></h2>
|
|
</header><!-- .entry-header -->
|
|
|
|
|
|
<div class="entry-content">
|
|
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'soundmap_theme' ) ); ?>
|
|
</div><!-- .entry-content -->
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|