在帖子页面上,我显示了文章的作者。但我有两种类型的作者。
一方面,我有;xxx团队;而另一方面;来自xxx“;但我的问题是前置词。
现在它显示为;xxx团队;和;“xxx”;。这是代码中的部分:
<a href="<?php echo get_author_posts_url( get_the_author_meta(\'ID\'), get_the_author_meta( \'user_nicename\' ) ); ?>" class="m-article-author">
<?php
$author_bio_avatar_size = apply_filters( \'tierisch_wohnen_author_bio_avatar_size\', 49 );
echo get_avatar( get_the_author_meta( \'user_email\' ), $author_bio_avatar_size );
?>
The <span class="m-article-author-name"><?php the_author(); ?></span>
</a>
我希望有人能帮助我使用if-else功能或一些搜索和替换。如果有人有什么想法,请告诉我。