author link on article page

This commit is contained in:
Ross Trottier 2024-08-16 10:15:54 -06:00
parent 81d022f8e8
commit 1708916680
2 changed files with 18 additions and 7 deletions

View File

@ -10,14 +10,16 @@
$post_id = get_the_ID();
?>
<h1 class="st-article__title"> <?php the_title(); ?> </h1>
<div class="st-article__author-box">
<div class="st-article__author-name">
<?php the_author() ?>
<a href="<?php echo get_author_posts_url( $post->post_author ); ?>" class="st-article-page__author-link">
<div class="st-article__author-box">
<div class="st-article__author-name">
<?php the_author() ?>
</div>
<div>
<?php the_date() ?>
</div>
</div>
<div>
<?php the_date() ?>
</div>
</div>
</a>
<?php the_content(); ?>
<?php
if (function_exists('get_field')) {

View File

@ -1148,6 +1148,15 @@ COMPONENTS
display: none;
}
.st-article-page__author-link {
text-decoration: none;
color: black;
}
.st-article-page__author-link:hover {
color: #FFDB12;
}
.breadcrumbs li:first-child {
margin-left: 0;
}