2015-09-26 04:08:27 +02:00
|
|
|
<?php
|
2016-03-10 14:18:33 +01:00
|
|
|
global $post, $post_id;
|
2015-09-26 04:08:27 +02:00
|
|
|
|
|
|
|
$title = get_the_title();
|
|
|
|
|
|
|
|
$fname = get_the_author_meta('first_name');
|
|
|
|
$lname = get_the_author_meta('last_name');
|
|
|
|
$full_name = '';
|
|
|
|
|
|
|
|
if( empty($fname)){
|
2015-12-17 15:55:34 +01:00
|
|
|
$full_name = $lname;
|
2015-09-26 04:08:27 +02:00
|
|
|
} elseif( empty( $lname )){
|
2015-12-17 15:55:34 +01:00
|
|
|
$full_name = $fname;
|
2015-09-26 04:08:27 +02:00
|
|
|
} else {
|
2015-12-17 15:55:34 +01:00
|
|
|
//both first name and last name are present
|
|
|
|
$full_name = "{$fname} {$lname}";
|
2015-09-26 04:08:27 +02:00
|
|
|
}
|
|
|
|
|
2015-10-02 01:48:59 +02:00
|
|
|
if (strlen($full_name) <= 0) {
|
2015-12-17 15:55:34 +01:00
|
|
|
$full_name = 'ascribe';
|
2015-10-02 01:48:59 +02:00
|
|
|
}
|
|
|
|
|
2015-11-02 11:18:22 +01:00
|
|
|
$url = get_the_permalink();
|
|
|
|
|
2015-09-26 04:08:27 +02:00
|
|
|
?>
|
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
<article <?php post_class( '', $post_id ); ?>>
|
2015-12-17 15:55:34 +01:00
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
<header>
|
|
|
|
<?php echo get_the_category_list(); ?>
|
|
|
|
<?php echo "<h1 class='entry-title'><a href='{$url}'>{$title}</a></h1>" ?>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="entry-image">
|
2015-12-17 15:55:34 +01:00
|
|
|
<?php
|
|
|
|
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
|
|
|
|
|
|
|
|
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'blog-crop');
|
|
|
|
echo "<img src='{$thumb[0]}' alt='{$title} image'>";
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
2016-01-16 18:46:45 +01:00
|
|
|
|
|
|
|
<div class="entry-meta">
|
2016-03-10 14:18:33 +01:00
|
|
|
<?php echo get_avatar( get_the_author_meta('email'), 48 ); ?>
|
2015-12-17 15:55:34 +01:00
|
|
|
<span class="author">by <?php echo $full_name; ?></span>
|
|
|
|
on <date><?php the_time( get_option( 'date_format' ) ); ?></date>
|
|
|
|
</div>
|
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
<main class="entry-content">
|
2015-12-17 15:55:34 +01:00
|
|
|
<?php
|
|
|
|
if ( ! is_singular() ) {
|
|
|
|
the_excerpt();
|
2016-01-16 18:46:45 +01:00
|
|
|
echo "<a class='button small' href='{$url}'>Read More</a>";
|
2015-12-17 15:55:34 +01:00
|
|
|
} else {
|
|
|
|
the_content();
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</main>
|
|
|
|
</article>
|