Z-BlogPHP 开发文档:常用函数之GetPost 函数
GetPost 函数
通过GetPost 可以获取指定的文章或页面或是其它类型的Post表的数据
//返回id为10的Post对象实例,如果没有就返回一个空的Post对象实例 $post = GetPost(array('id'=>10)) //返回object(Post类型) //array参数如下 array( 'id' => 10, //指定ID(可省略) 'title' => 'abc', //指定Post标题(可省略) 'alias' => 'cba', //指定Post别名(可省略) 'titleoralias' => 'ddd', //指定Post标题or别名(可省略) 'idorname' => 'fff', //指定Post的ID或标题or别名(可省略) //以下是原$option参数的key键 'post_type' => null, //指定查询Post表的类型 (可省略) 'post_status' => null, //指定查询Post表的状态 (可省略) 'only_article' => false, //指定是查找文章 (可省略) 'only_page' => false, //指定是查找页面 (可省略) 'where_custom' => array(array('=', 'log_Template', '')), //自定义where 'order_custom' => array('log_CommNums' => 'ASC'), //自定义order )