📅  最后修改于: 2023-12-03 15:35:44.852000             🧑  作者: Mango
WP获取作者描述
在WordPress中,可以获取到作者的描述信息,这对于一些需要显示作者信息的场景非常有用。主要方法是通过以下代码获取:
<?php
$author_meta = get_the_author_meta( 'description' );
echo $author_meta;
?>
该代码可以获取当前文章的作者的描述信息并将其输出。其中,get_the_author_meta()
方法用于获取指定目标作者的元数据,而description
则表示作者描述信息在数据库中对应的字段名。返回结果为字符串型。
以下是将获取的作者描述信息以Markdown格式输出的示例代码片段:
<?php
$author_desc = get_the_author_meta( 'description' );
$author_name = get_the_author();
if($author_desc){
echo "### $author_name\n\n$author_desc";
}
?>
其中,我们通过 get_the_author() 方法获取了作者名称,然后将其拼接在输出的Markdown标题中。如果有作者描述信息,则将其输出在标题下方。最终输出的结果如下:
John Doe is a web developer and freelance writer with more than 5 years of experience. He is passionate about technology and has a strong interest in website design and development.
以上代码可以直接复制到WordPress主题的单个文章作者模板(single.php)中,用于显示单个文章页中的作者信息。