Files
Romhack-Plaza---WordPress-T…/views/pieces/posts/author-bio.twig

22 lines
760 B
Twig
Raw Normal View History

2026-01-29 19:10:03 +01:00
{% if theme_setting( 'author_bio' ) or conditional_tag.is_customize_preview %}
<div class="entry-author clearfix">
<div class="author-avatar">
{{ fn( 'get_avatar', post.author.user_email, 128 ) }}
</div>
<div class="author-heading">
<h4 class="author-title">{{ __( 'About %s', 'romhackplaza' )|esc_html|format( '<span class="author-name">' ~ post.author.display_name ~ '</span>' ) }}</h4>
<a class="author-link" href="{{ post.author.profile_url|esc_url }}" rel="author">
{{ __( 'View all posts', 'romhackplaza')|esc_html }}
</a>
</div>
<p class="author-bio">
{{ post.author.meta( 'description' ) }}
</p>
</div>
{% endif %}