搜索和替换作者的前言

时间:2021-04-21 作者:hendrik-eg

在帖子页面上,我显示了文章的作者。但我有两种类型的作者。

一方面,我有;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功能或一些搜索和替换。如果有人有什么想法,请告诉我。

1 个回复
SO网友:hendrik-eg

这是我的答案:

                    <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 );
                        ?>


                    <?php 
                    
                    if (get_the_author_meta(\'display_name\') === \'xxx Team\') {
                        echo"The";
                    }
                    else {
                        echo"From";
                    }
                    ?>

                    
                    <span class="m-article-author-name"><?php the_author(); ?></span>
                    </a>
                    

相关推荐

在Gutenberg中使用2个HTML块用div包装内容

我想用一个x级的div包一个古腾堡积木。我使用的结构如下所示:HTML块(<div class="x">)其他块HTML块(</div>)</在前端,all works as expected, 但在编辑中,when saving and reloading, it will popup the "This block contains unexpected or invalid content" error 在两个HTML块中。我假设