-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
36 lines (32 loc) · 1.08 KB
/
content.php
File metadata and controls
36 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* The default template for displaying content
*
* Used for both single and index/archive/search.
*
* @package Disueños
* @subpackage Dreamy_Town
* @since esArroyo.es 2014
*/
?>
<article id="post-<?php the_ID(); ?>" <?php //post_class(); ?> class="col-md-8 col-md-offset-2 col-sm-10 col-sm-offset-1 col-xs-12">
<h1><?php the_title(); ?></h1>
<?php dreamy_town_post_thumbnail(); ?>
<div class="entry-meta">
<?php
edit_post_link( __( 'Edit', 'dreamy_town' ), '<span class="edit-link">', '</span>' );
?>
</div><!-- .entry-meta -->
<div class="entry-content">
<?php
the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'dreamy_town' ) );
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'dreamy_town' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
) );
?>
</div><!-- .entry-content -->
<?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
</article><!-- #post-## -->