对于每篇博客帖子,我需要显示自定义元guest_author,如果没有设置,则默认用户。
这是我想用PHP做的,请帮忙
如果guest_author可用 echo guest_author 其他 回应作者
答案 0 :(得分:1)
您可以使用以下内容:
a <- as.numeric(levels(a))[a]
参考:https://codex.wordpress.org/Function_Reference/the_author_meta
答案 1 :(得分:0)
这是我最终做的:
<span class="post-info-text"><?php echo 'This interview was taken by: </span> <span class="author-name vcard fn author" itemprop="name">'; ?>
<?php $guest_author = get_post_meta(get_the_ID(), 'guest_author', true);
if (!$guest_author){the_author_posts_link();}else{echo $guest_author;} ?></span>