WordPress常用函数get post

来自站长百科
跳转至: 导航、​ 搜索

导航: 上一页 | 首页 | WordPress中文论坛 | WordPress主机 | CMS程序 | 论坛程序 | ECShop | ShopNC | PowerEasy

常用函数-get_post()

说明[ ]

读取文章编号(ID),将文章记录返回数据库。用户可通过$output参数指定结果的返回方式。

用法[ ]

<?php get_post($post, $output); ?> 

示例[ ]

获取编号(ID)为7的文章标题:

<?php
$my_id = 7;
$post_id_7 = get_post($my_id); 
$title = $post_id_7->post_title;
?> 

也可以指定$output参数:

<?php
$my_id = 7;
$post_id_7 = get_post($my_id, ARRAY_A);
$title = $post_id_7['post_title'];
?> 
<?php
##    Correct: pass a dummy variable as post_id
$the_post = & get_post( $dummy_id = 7 );
##    Incorrect: literal integer as post_id
$the_post = & get_post( 7 );
//    Fatal error: 'Only variables can be passed for reference' or 'Cannot pass parameter 1 by reference'
?>

参数[ ]

$post

(整数)(必需)需要获取的文章的编号(ID)。必须传递一个含有整数的变量(如$id)。仅传递整数会引发严重错误(只能传递变量以供参考或不允许传递值为1的参数)。

默认值:None

$output

(字符)(可选)如何显示返回结果

OBJECT —— 返回对象 ARRAY_A —— 返回值字段名称的关联数组 ARRAY_N —— 返回字段值的数值数组 默认值:OBJECT

返回 返回的字段为:

ID

(整数)文章编号

post_author

(整数)文章作者的编号

post_data

(字符)文章发表的日期和时间(YYYY-MM-DD HH-MM-SS)

post_data_gmt

(字符)文章发表的格林尼治标准时间(GMT) (YYYY-MM-DD HH-MM-SS)

post_content

(字符)文章内容

post_title

(字符)文章标题

post_category

(整数)文章类别的编号。注意:该值在WordPress 2.1之后的版本总为0。定义文章的类别时可使用 get_the_category()函数。

post_excerpt

(字符)文章摘要

post_status

(字符)文章状态(publish|pending|draft|private|static|object|attachment|inherit|future)

comment_status

(字符)评论状态(open|closed|registered_only)

ping_status

(字符)pingback/trackback状态(open|closed)

post_password

(字符)文章密码

post_name

(字符)文章的URL嵌套

to_ping

(字符)要引用的URL链接

pinged

(字符)引用过的链接

post_modified

(字符)文章最后修改时间(YYYY-MM-DD HH-MM-SS)

post_modified_gmt

(字符)文章最后修改GMT时间(YYYY-MM-DD HH-MM-SS) post_content_filtered

(字符)

post_parent

(整数)父级文章编号(供附件等)

guid

(字符)文章的一个链接。注意:不能将GUID作为永久链接(虽然在2.5之前的版本中它的确被当作永久链接),也不能将它作为文章的可用链接。GUID是一种独有的标识符,只是目前恰巧成为文章的一个链接。

menu_order

(整数)

post_type

(字符)(日志 | 页面 | 附件) post_mime_type

(字符)Mime类型(供附件等)

comment_count

(整数)评论总数

资料参考 get_post 无法运行:“ 本话题已禁用评论”


相关条目[ ]