-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-page.php
More file actions
30 lines (24 loc) · 841 Bytes
/
Copy pathcontent-page.php
File metadata and controls
30 lines (24 loc) · 841 Bytes
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
<?php
/**
* The template used for displaying page content in page.php
*
* @package wp-taiga
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="page-header">
<h1 class="page-title" itemprop="headline"><?php the_title(); ?></h1>
</header><!-- .page-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'wp-taiga' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<footer class="page-footer">
<?php the_tags( '<span class="tags">' . __( 'Tags:', 'wp-taiga' ) . ' ', ' ', '</span>' ); ?><?php edit_post_link( __( 'Edit', 'wp-taiga' ), '<span class="edit-link button-soft right">', '</span>' ); ?>
</footer><!-- .page-footer -->
</article><!-- #post-## -->