最近我运行了一个多作者博客,其中注册成员最多的人没有填写传记信息。我的主题有作者php文件。现在我想添加默认的传记信息,当作者自己填写生物信息时,这些信息会被覆盖。我是WordPress的新手。我不想使用任何插件。请告诉我如何手动添加默认传记信息?
答案 0 :(得分:0)
您使用<?php echo get_the_author_meta('description'); ?>
来显示作者说明。所以在你的模板中你会这样做:
<?php if (get_the_author_meta('description')){
echo get_the_author_meta('description');
} else { ?>
Your boilerplate default
<?php } ?>