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.
85 lines
2.2 KiB
85 lines
2.2 KiB
<?php
|
|
/**
|
|
* Template part for displaying posts
|
|
*
|
|
* @package Cordero
|
|
*/
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?><?php cordero_schema_item( 'article' ); ?>>
|
|
|
|
<?php
|
|
if ( get_post_format() == 'video' ) {
|
|
$video_content = apply_filters( 'the_content', get_the_content() );
|
|
$video = false;
|
|
// Only get video from the content if a playlist isn't present.
|
|
if ( false === strpos( $video_content, 'wp-playlist-script' ) ) {
|
|
$video = get_media_embedded_in_content( $video_content, array( 'video', 'object', 'embed', 'iframe' ) );
|
|
}
|
|
if ( ! empty( $video ) ) {
|
|
|
|
$first_video = true;
|
|
foreach ( $video as $video_html ) {
|
|
if ( $first_video ) {
|
|
echo '<div class="entry-video">';
|
|
echo $video_html;
|
|
echo '</div>';
|
|
$first_video = false;
|
|
}
|
|
}
|
|
} else {
|
|
cordero_post_thumbnail();
|
|
}
|
|
} else {
|
|
cordero_post_thumbnail();
|
|
}
|
|
?>
|
|
|
|
<header class="entry-header">
|
|
<?php
|
|
if ( !get_the_title() ) {
|
|
?>
|
|
<h2 class="entry-title"<?php cordero_schema_prop( 'headline' ); ?>><a href="<?php echo esc_url( get_permalink() ); ?>" rel="bookmark"><?php esc_html_e( 'No Title', 'cordero' ); ?></a></h2>
|
|
<?php
|
|
} else {
|
|
the_title( '<h2 class="entry-title"' . cordero_schema_prop( 'headline', 'false' ) . '><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
|
|
}
|
|
?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-meta">
|
|
<?php
|
|
if ( !get_theme_mod( 'disable_author' ) ) {
|
|
cordero_posted_by();
|
|
}
|
|
if ( !get_theme_mod( 'disable_date' ) ) {
|
|
cordero_posted_on();
|
|
}
|
|
if ( !get_theme_mod( 'disable_cats' ) ) {
|
|
cordero_entry_cats();
|
|
}
|
|
?>
|
|
</div><!-- .entry-meta -->
|
|
|
|
<div class="entry-content"<?php cordero_schema_prop( 'text' ); ?>>
|
|
<?php
|
|
if ( get_theme_mod( 'blog_post_excerpt' ) === 'full' ) {
|
|
the_content();
|
|
} else {
|
|
the_excerpt();
|
|
}
|
|
wp_link_pages( array(
|
|
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'cordero' ),
|
|
'after' => '</div>',
|
|
) );
|
|
cordero_read_more();
|
|
?>
|
|
</div><!-- .entry-content -->
|
|
|
|
<div class="entry-footer">
|
|
<?php
|
|
cordero_entry_tags();
|
|
?>
|
|
</div><!-- .entry-footer -->
|
|
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|
|
|