orgen-theme/template-parts/content-timeline.php
2023-04-06 16:58:33 +08:00

123 lines
4.8 KiB
PHP

<article class="post post-full card bg-white shadow-sm border-0" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="post-header text-center<?php if (argon_has_post_thumbnail() && get_option('argon_show_thumbnail_in_banner_in_content_page') != 'true'){echo " post-header-with-thumbnail";}?>">
<?php
if (argon_has_post_thumbnail() && get_option('argon_show_thumbnail_in_banner_in_content_page') != 'true'){
$thumbnail_url = argon_get_post_thumbnail();
echo "<img class='post-thumbnail' src='" . $thumbnail_url . "'></img>";
echo "<div class='post-header-text-container'>";
}
if (argon_has_post_thumbnail() && get_option('argon_show_thumbnail_in_banner_in_content_page') == 'true'){
$thumbnail_url = argon_get_post_thumbnail();
echo "
<style>
body section.banner {
background-image: url(" . $thumbnail_url . ") !important;
}
</style>";
}
?>
<a class="post-title" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<div class="post-meta">
<?php
$metaList = explode('|', get_option('argon_article_meta', 'time|views|comments|categories'));
if (is_sticky() && is_home() && ! is_paged()){
array_unshift($metaList, "sticky");
}
if (post_password_required()){
array_unshift($metaList, "needpassword");
}
if (is_meta_simple()){
array_remove($metaList, "time");
array_remove($metaList, "edittime");
array_remove($metaList, "categories");
array_remove($metaList, "author");
}
if (count(get_the_category()) == 0){
array_remove($metaList, "categories");
}
for ($i = 0; $i < count($metaList); $i++){
if ($i > 0){
echo ' <div class="post-meta-devide">|</div> ';
}
echo get_article_meta($metaList[$i]);
}
?>
</div>
<?php
if (has_post_thumbnail() && get_option('argon_show_thumbnail_in_banner_in_content_page') != 'true'){
echo "</div>";
}
?>
</header>
<div class="post-content" id="post_content">
<?php if (post_password_required()){ ?>
<div class="text-center container">
<form action="/wp-login.php?action=postpass" class="post-password-form" method="post">
<div class="post-password-form-text"><?php _e('这是一篇受密码保护的文章,您需要提供访问密码', 'argon');?></div>
<div class="row">
<div class="form-group col-lg-6 col-md-8 col-sm-10 col-xs-12 post-password-form-input">
<div class="input-group input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-key"></i></span>
</div>
<input name="post_password" class="form-control" placeholder="密码" type="password">
</div>
</div>
</div>
<input class="btn btn-primary" type="submit" name="Submit" value="确认">
</form>
</div>
<?php
}else{
$show_month = get_option('argon_archives_timeline_show_month', 'true');
$POST = $GLOBALS['post'];
echo "<div class='argon-timeline archive-timeline'>";
$last_year = 0;
$last_month = 0;
$posts = get_posts('numberposts=-1&orderby=post_date&order=DESC');
foreach ($posts as $post){
setup_postdata($post);
$year = mysql2date('Y', $post -> post_date);
$month = mysql2date('M', $post -> post_date);
if ($year != $last_year){
echo "<div class='argon-timeline-node'>
<h2 class='argon-timeline-time archive-timeline-year'><a href='" . get_year_link($year) . "'>" . $year . "</a></h2>
<div class='argon-timeline-card card bg-gradient-secondary archive-timeline-title'></div>
</div>";
$last_year = $year;
$last_month = 0;
}
if ($month != $last_month && $show_month == 'true'){
echo "<div class='argon-timeline-node'>
<h3 class='argon-timeline-time archive-timeline-month" . ($last_month == 0 ? " first-month-of-year" : "") . "'><a href='" . get_month_link($year, $month) . "'>" . $month . "</a></h3>
<div class='argon-timeline-card card bg-gradient-secondary archive-timeline-title'></div>
</div>";
$last_month = $month;
} ?>
<div class='argon-timeline-node'>
<div class='argon-timeline-time'><?php echo mysql2date('m-d', $post -> post_date); ?></div>
<div class='argon-timeline-card card bg-gradient-secondary archive-timeline-title'>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</div>
</div>
<?php
}
echo '</div>';
$GLOBALS['post'] = $POST;
}
?>
</div>
<?php if (has_tag()) { ?>
<div class="post-tags">
<i class="fa fa-tags" aria-hidden="true"></i>
<?php
$tags = get_the_tags();
foreach ($tags as $tag) {
echo "<a href='" . get_category_link($tag -> term_id) . "' target='_blank' class='tag badge badge-secondary post-meta-detail-tag'>" . $tag -> name . "</a>";
}
?>
</div>
<?php } ?>
</article>