当向WordPress主题添加元属性标签时,其中之一是:
<meta property="og:author" content="作者" />
<meta property="og:author" content="<?php the_author(); ?>" />
其中包括:
<?php the_author(); ?>
这里用的时候,作者的名字是不能显示的,发帖后不知道怎么显示作者名字的代码可能都是复制的,但是不知道为什么。
<?php the_author_meta('user_nicename', $post->post_author); ?>
更换。
默认的user_nicename是显示作者的登录名。暴露重要信息是危险的。您可以用以下内容替换它:
display_name 公开显示名称
user_nicename 昵称
first_name 名字
last_name 姓氏
建议用:display_name,这是“公开显示”设置中的名称。
建议:display_name,是“公共显示”设置中的名称。
至于元属性标签的完整编写方法,因为主题不同,获取信息的方法也不同,这里就不写了。在网上搜一堆,如果没有显示作者名字,就按照上面改。