我需要在WordPress中的single.php文件顯示帖子的作者。該參考指示the_author();只在循環中起作用。顯示作者姓名(WordPress的)
我一直在尋找其他的論壇並沒有什麼發現。
有什麼想法?
謝謝。
編輯:
<div class="bar_info">
<?php echo "By: ".the_author(); ?>
<?php
foreach((get_the_category()) as $category) {
echo category->cat_name.', ';
}
?>
</div>
我不明白這一點。你仍然在'single.php'中利用循環,所以你仍然可以使用'the_author();'或'get_the_author();',etch。 – Ohgodwhy