我創建了我自己的author.php模板。我想顯示作者的自定義元字段代碼示例是在此圖像中:http://prntscr.com/wsdsa在author.php中顯示作者meta的錯誤
但WordPress的不顯示任何東西?我該怎麼辦 ?
<div class="BCol">
<?php echo keepAuthorImage(); ?>
</div>
<div class="ACol">
<div class="A1"><?php echo get_the_author_meta('first_name') ?> <?php echo get_the_author_meta('last_name') ?></div>
<div class="A2"><?php echo the_author_meta('job') ?></div>
<div class="A3"><?php echo get_the_author_meta('location') ?></div>
<div class="A5">
<a href="<?php echo get_the_author_meta('userwebpages') ?>" target="_blank"><img src="<?php echo THEME; ?>/_assets/_img/websiteicon.png" alt=""></a>
<a href="http://twitter.com/<?php echo get_the_author_meta('twitter') ?>" target="_blank"><img src="<?php echo THEME; ?>/_assets/_img/twitteric.png" alt=""></a>
<a href="http://instagram.com/<?php echo get_the_author_meta('instagram') ?>" target="_blank"><img src="<?php echo THEME; ?>/_assets/_img/instagramic.png" alt=""></a>
</div>
<div class="A4"><?php echo get_the_author_meta('aboute') ?></div>
</div>
有幫助嗎?謝謝。
Thaks DINC。這樣可行。 – 2013-03-18 09:25:38