
1. Sửa thành phần tác giả:
file chứa code:
- Nếu dùng theme gốc: wp-content/themes/flatsome/template-parts/posts/content-single.php
- Nếu dùng child theme: wp-content/themes/flatsome-child/template-parts/posts/content-single.php
php
Sao chép
<?php if ( get_theme_mod( 'blog_author_box', 1 ) ) : ?>
<div class="entry-author author-box">
<div class="flex-row align-top">
<div class="flex-col mr circle">
<div class="blog-author-image">
<?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'flatsome_author_bio_avatar_size', 90 ) ); ?>
</div>
</div>
<div class="flex-col flex-grow">
<h5 class="author-name uppercase pt-half">
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) ?>"><?php the_author_meta( 'display_name' ); ?></a>
</h5>
<p class="author-desc small"><?php $author_description = get_the_author_meta('description');$trimmed_description = wp_trim_words($author_description, 30, '...');echo $trimmed_description; ?></p>
</div>
</div>
</div>
<?php endif; ?>
Ví dụ về đoạn sửa code gắn link tác giả vào tên tác giả
Bình luận