我在用户档案中为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()
但对我不起作用。