wordpress/php-fpm/wordpress_files/themes/wp-bootstrap-starter/template-parts/content-notitle.php
2020-05-22 01:40:23 +00:00

24 lines
493 B
PHP

<?php
/**
* Template part for displaying page content
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WP_Bootstrap_Starter
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'wp-bootstrap-starter' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</article><!-- #post-## -->