Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions single.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php get_header(); ?>

<div class="content">
<div class="content" itemscope itemtype="http://schema.org/Article">

<div class="stickywrap">

Expand All @@ -12,35 +12,35 @@

<?php while ( have_posts() ): the_post(); ?>

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemscope itemprop="mainEntity" itemtype="http://schema.org/BlogPosting">

<header class="entry-header group">
<div class="blog-card-category"><?php the_category(' '); ?></div>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="blog-card-category" itemprop="articleSection"><?php the_category(' '); ?></div>
<h1 class="entry-title" itemprop="headline"><?php the_title(); ?></h1>
<div class="blog-card-byline group">
<div class="blog-card-avatar"><a href="<?php echo get_author_posts_url(get_the_author_meta( 'ID' )); ?>"><?php echo get_avatar(get_the_author_meta('user_email'),'48'); ?></a></div>
<div class="blog-card-author"><?php esc_html_e('by','clearer'); ?> <?php the_author_posts_link(); ?></div>
<div class="blog-card-date-single"><?php the_time( get_option('date_format') ); ?></div>
<div class="blog-card-avatar"><a href="<?php echo get_author_posts_url(get_the_author_meta( 'ID' )); ?>" itemprop="author" itemscope itemtype="http://schema.org/Person"><meta itemprop="name" content="<?php the_author(); ?>"><?php echo get_avatar(get_the_author_meta('user_email'),'48'); ?></a></div>
<div class="blog-card-author" itemprop="author" itemscope itemtype="http://schema.org/Person">
<?php esc_html_e('by','clearer'); ?> <span itemprop="name"><?php the_author_posts_link(); ?></span>
</div>
<div class="blog-card-date-single" itemprop="datePublished" content="<?php echo get_the_date('c'); ?>"><?php the_time( get_option('date_format') ); ?></div>
<meta itemprop="dateModified" content="<?php echo get_the_modified_date('c'); ?>">
</div>

<?php if ( get_theme_mod( 'header-featured-image', 'on' ) == 'on' ): ?>

<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured-image">
<?php the_post_thumbnail('clearer-large'); ?>
<?php if ( comments_open() && ( get_theme_mod( 'comment-count', 'on' ) =='on' ) ): ?>
<?php $number = get_comments_number( $post->ID ); if ( $number > 0 ) { ?>
<a class="comments-bubble" href="<?php comments_link(); ?>"><i class="fas fa-comment"></i><span><?php comments_number( '0', '1', '%' ); ?></span></a>
<?php } ?>
<?php endif; ?>
<div class="entry-featured-image" itemprop="image" itemscope itemtype="http://schema.org/ImageObject">
<?php the_post_thumbnail('clearer-large', ['itemprop' => 'url']); ?>
<meta itemprop="width" content="<?php echo wp_get_attachment_metadata(get_post_thumbnail_id())['width']; ?>">
<meta itemprop="height" content="<?php echo wp_get_attachment_metadata(get_post_thumbnail_id())['height']; ?>">
</div>
<?php endif; ?>

<?php endif; ?>
<?php endif; ?>

</header>

<div class="entry themeform">
<div class="entry themeform" itemprop="articleBody">
<?php the_content(); ?>
<?php wp_link_pages(array('before'=>'<div class="post-pages">'.esc_html__('Pages:','clearer'),'after'=>'</div>')); ?>
<div class="clear"></div>
Expand All @@ -55,10 +55,10 @@
<div class="clear"></div>

<?php if ( ( get_theme_mod( 'author-bio', 'on' ) == 'on' ) && get_the_author_meta( 'description' ) ): ?>
<div class="author-bio">
<div class="author-bio" itemprop="author" itemscope itemtype="http://schema.org/Person">
<div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
<p class="bio-name"><?php the_author_meta('display_name'); ?></p>
<p class="bio-desc"><?php the_author_meta('description'); ?></p>
<p class="bio-name" itemprop="name"><?php the_author_meta('display_name'); ?></p>
<p class="bio-desc" itemprop="description"><?php the_author_meta('description'); ?></p>
<div class="clear"></div>
</div>
<?php endif; ?>
Expand All @@ -67,7 +67,7 @@

<?php if ( get_theme_mod( 'post-nav', 'sidebar' ) == 'content' ) { get_template_part('inc/post-nav'); } ?>

<div class="entry-comments themeform">
<div class="entry-comments themeform" itemprop="comment" itemscope itemtype="http://schema.org/Comment">
<?php comments_template(); ?>
</div>

Expand All @@ -85,4 +85,4 @@

<?php get_sidebar(); ?>

<?php get_footer(); ?>
<?php get_footer(); ?>