问题描述
(主持人的说明:标题最初是 「wordpress post 对象中的所有变量是什么?」)
有没有人知道存储在 WordPress Post 对象中的变量?
最佳解决方案
Post 对象大部分是查询 wp_posts
数据库表中的一些附加组件。很容易转载一个内容,看看:
object(stdClass)
public 'ID' => int
public 'post_author' => string
public 'post_date' => string
public 'post_date_gmt' => string
public 'post_content' => string
public 'post_title' => string
public 'post_excerpt' => string
public 'post_status' => string
public 'comment_status' => string
public 'ping_status' => string
public 'post_password' => string
public 'post_name' => string
public 'to_ping' => string
public 'pinged' => string
public 'post_modified' => string
public 'post_modified_gmt' => string
public 'post_content_filtered' => string
public 'post_parent' => int
public 'guid' => string
public 'menu_order' => int
public 'post_type' => string
public 'post_mime_type' => string
public 'comment_count' => string
public 'filter' => string
次佳解决方案
如果您是使用 $post
(使用 var_dump
检索) 可以访问的内容:
-
ID
-
post_author
-
post_date
-
post_date_gmt
-
post_content
-
post_title
-
post_excerpt
-
post_status
-
comment_status
-
ping_status
-
post_password
-
post_name
-
to_ping
-
ping 通
-
post_modified
-
post_modified_gmt
-
post_content_filtered
-
post_parent
-
GUID
-
menu_order
-
post_type
-
post_mime_type
-
comment_count
-
祖先
-
过滤
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。