gpt4 book ai didi

wordpress - 在 single.php (Wordpress) 中显示作者姓名

转载 作者:行者123 更新时间:2023-12-01 07:45:11 24 4
gpt4 key购买 nike

我需要在 Wordpress 的 single.php 文件中显示帖子的作者。引用表明 the_author();仅在循环内有效。

我一直在寻找其他论坛,但一无所获。

有什么想法吗?

谢谢。

编辑:

    <div class="bar_info">
<?php echo "By: ".the_author(); ?>
<?php
foreach((get_the_category()) as $category) {
echo category->cat_name.', ';
}
?>
</div>

最佳答案

在你的single.php , 你很可能调用 the_post() .你会发现 WordPress template tags在这条线之后会工作得很好。换句话说,您可以使用 the_authorsingle.php .

编辑:根据您在问题中更新的代码,您需要在 single.php 的顶部放置如下内容:

<?php if( have_posts() ) the_post(); ?>

此外,如果您想在 echo 中使用作者姓名语句,使用 get_the_author反而。 the_author实际上已经为你回响了。

关于wordpress - 在 single.php (Wordpress) 中显示作者姓名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16797863/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com