未显示用户配置文件中的自定义联系信息

时间:2016-10-27 作者:Umar Tanveer

我在用户档案中为Facebook、Twitter和LinkedIn创建了自定义联系人字段。但我无法在前端检索这些值。这是代码。它正在显示空值。

<?php while ( have_posts() ) : the_post(); ?>

<?php 
    get_template_part( \'template-parts/content\', \'single\' );
?>

<div class="author-info_wrapper">
    <div class="author-info-inner_wrapper">

        <ul class="list-inline social-list">

           <li>
               <a href="<?php the_author_meta(\'facebook\'); ?>"><i class="ion-social-facebook"></i></a>
           </li>

           <li>
               <a href="<?php the_author_meta(\'twitter\'); ?>"><i class="ion-social-twitter"></i></a>
           </li>

            <li>
                <a href="<?php the_author_meta(\'linkedin\'); ?>"><i class="ion-social-linkedin"></i></a>
           </li>

   </ul>
</div>
</div>

<?php endwhile; // End of the loop. ?>
我还使用echo the_author_meta() 但对我不起作用。

1 个回复
SO网友:Kanon Chowdhury

use get_the_author_meta() instead of the_author_meta()

相关推荐