Move into wp-content path
Signed-off-by: Adrian Nöthlich <git@promasu.tech>
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying Big Featured Posts in the Front Page Sections
|
||||
*
|
||||
* @package Pirate Rogue
|
||||
* @since Pirate Rogue 1.0
|
||||
* @version 1.0
|
||||
*/
|
||||
|
||||
$thumbfallbackid = absint(get_theme_mod( 'pirate_rogue_fallback_thumbnail' ));
|
||||
if (!isset($thumbfallbackid)) {
|
||||
$thumbfallbackid =0;
|
||||
} else {
|
||||
$imagesrc = wp_get_attachment_image_src( $thumbfallbackid, 'pirate-rogue-front-big' )[0];
|
||||
}
|
||||
?>
|
||||
|
||||
<article <?php post_class(); ?> itemscope itemtype="http://schema.org/NewsArticle">
|
||||
<?php if ( '' != get_the_post_thumbnail() && ! post_password_required() ) : ?>
|
||||
<div class="entry-thumbnail fadein" aria-hidden="true" role="presentation" tabindex="-1">
|
||||
<a href="<?php the_permalink(); ?>"><span class="thumb-wrap"><?php the_post_thumbnail('pirate-rogue-front-big'); ?></span></a>
|
||||
<?php if ( has_post_format('video') ) : ?>
|
||||
<span class="video-icon"><?php esc_html_e('Video', 'pirate-rogue') ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php elseif ( ! post_password_required() && $imagesrc != '') : ?>
|
||||
<div class="entry-thumbnail fadein" aria-hidden="true" role="presentation" tabindex="-1">
|
||||
<a href="<?php the_permalink(); ?>"><span class="thumb-wrap"><img src="<?php echo $imagesrc; ?>" alt="<?php echo get_the_title();?>"></span></a>
|
||||
<?php if ( has_post_format('video') ) : ?>
|
||||
<span class="video-icon"><?php esc_html_e('Video', 'pirate-rogue') ?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="entry-text-wrap">
|
||||
<div class="entry-text">
|
||||
<header class="entry-header">
|
||||
<div class="entry-cats" itemprop="articleSection">
|
||||
<?php the_category(' '); ?>
|
||||
</div>
|
||||
<?php
|
||||
echo '<h2 class="entry-title" itemprop="headline"><a href="'.esc_url( get_permalink() ).'" rel="bookmark" itemprop="url">';
|
||||
echo get_the_title();
|
||||
echo '</a><span class="screen-reader-text"> ('. get_the_date().')</span></h2>';
|
||||
?>
|
||||
</header>
|
||||
<div class="entry-meta">
|
||||
<?php pirate_rogue_posted_by(); ?>
|
||||
<span class="entry-date" aria-hidden="true">
|
||||
<a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a>
|
||||
</span>
|
||||
<?php if ( comments_open() ) : ?>
|
||||
<span class="entry-comments">
|
||||
<?php comments_popup_link(
|
||||
'<span class="leave-reply"><span class="comment-name">' . esc_html__( 'Comments', 'pirate-rogue') . '</span>' . esc_html__( '0', 'pirate-rogue') . '</span>',
|
||||
'<span class="comment-name">' . esc_html__( 'Comments', 'pirate-rogue') . '</span>' . esc_html__( '1', 'pirate-rogue'),
|
||||
'<span class="comment-name">' . esc_html__( 'Comments', 'pirate-rogue') . '</span>' . esc_html__( '%', 'pirate-rogue') )
|
||||
; ?>
|
||||
</span>
|
||||
<?php endif; // comments_open() ?>
|
||||
<?php edit_post_link( esc_html__( 'Edit Post', 'pirate-rogue'), '<span class="entry-edit">', '</span>' ); ?>
|
||||
</div>
|
||||
<div class="entry-summary" itemprop="description">
|
||||
<?php echo pirate_rogue_custom_excerpt(600); ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
echo pirate_rogue_create_schema_thumbnail();
|
||||
echo pirate_rogue_create_schema_postmeta();
|
||||
echo pirate_rogue_create_schema_publisher();
|
||||
?>
|
||||
</article>
|
||||
Reference in New Issue
Block a user