You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
<?php
|
|
/**
|
|
* Template part for displaying single posts
|
|
*
|
|
* @package Cordero
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?><?php cordero_schema_item( 'article' ); ?>>
|
|
|
|
<header class="entry-header single">
|
|
<?php the_title( '<h1 class="entry-title"' . cordero_schema_prop( 'headline', 'false' ) . '>', '</h1>' ); ?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-content single-entry-content"<?php cordero_schema_prop( 'text' ); ?>>
|
|
<?php
|
|
if ( !get_theme_mod( 'disable_img_single' ) ) {
|
|
cordero_post_thumbnail();
|
|
}
|
|
|
|
the_content();
|
|
|
|
wp_link_pages( array(
|
|
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'cordero' ),
|
|
'after' => '</div>',
|
|
) );
|
|
?>
|
|
|
|
</div><!-- .entry-content -->
|
|
|
|
<footer class="entry-footer">
|
|
<?php
|
|
if ( !get_theme_mod( 'disable_author_single' ) ) {
|
|
cordero_posted_by();
|
|
}
|
|
|
|
if ( !get_theme_mod( 'disable_date_single' ) ) {
|
|
cordero_posted_on();
|
|
}
|
|
|
|
if ( !get_theme_mod( 'disable_cats_single' ) ) {
|
|
cordero_entry_cats();
|
|
}
|
|
|
|
cordero_entry_footer();
|
|
?>
|
|
</footer><!-- .entry-footer -->
|
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|
|
|