2020-05-01 / 3465阅 / 悠然
基于post字段检索数据,根据文章ID或者对象获取posts表中的字段
post字段的例子有' post_type '、' post_status '、' post_content '等,并且基于post对象属性或键名。上下文值基于分类法筛选器函数,支持的值可以在这些函数中找到。
(string)
(必须)
字段名称
(int|WP_Post)
(必须)
文章ID或者文章对象,当前文章对象
默认值: null
(string)
(选填)
如何过滤字段. 支持'raw', 'edit', 'db', or 'display'.
默认: 'display'
(string) 成功时返回字符串的值,失败返回空.
获取文章作者:
<?php
echo get_post_field('post_type',get_the_ID());
echo get_post_field('post_author',get_the_ID());
echo get_post_field('post_content',get_the_ID());
echo get_post_field('post_type',get_the_ID());
echo get_post_field('post_type',get_the_ID());
?>