我有下面的代碼生成一個category.php頁面上的鏈接作者:作者網址爲空
<?php while (have_posts()) : the_post(); ?>
....
<a href="<?php the_author_meta('user_url'); ?>"><?php the_author_meta('display_name'); ?></a>
....
<?php endwhile; ?>
遺憾的是,鏈接得到一個空的href屬性。顯示名稱正確填充。我正在使用最新的WordPress。
那麼我該如何指向作者檔案?即允許訪問者看到作者的更多帖子 – checklist
試試echo get_the_author_link(); – henrywright