常用函数-get_page_uri()
说明
为页面创建URI
子页面将表现在父页面发表名称的“目录”中。
用法
<?php get_page_uri(&...
常用函数-get_page_hierarchy()
2009-03-24
常用函数-get_page_hierarchy()
说明
get_page_hierarchy( )函数返回一个数组,该数组按页面排序次序进行排序。函数调用两个参数,分别是一个页面列表对象和一个父ID(可选)。
...
常用函数-get_page_children()
2009-03-24
常用函数-get_page_children()
说明
在编号相匹配的页面列表中检索子页面。
要与页面编号上的页面参数相匹配。还需要与子页面相匹配,以便检索某一页面上的所有子页面。切勿使用SQL查询来获取子页面...
常用函数-get_page_by_title()
2009-03-24
常用函数-get_page_by_title()
说明
当给出一个含有页面名称的字符参数时,get_page_by_title函数返回页面对象。在管理栏创建或编辑页面时,页面名称与标题文本字段相关。
...
常用函数-get_all_page_ids()
2009-03-24
常用函数-get_all_page_ids()
说明
获取页面编号列表。
用法
<?php get_all_page_ids() ?>
参数
无
...
常用函数-wp_publish_post()
2009-03-24
常用函数-wp_publish_post()
说明
通过更改文章状态来发表文章。
用法
<?php wp_publish_post( $post_id ) ...
常用函数-wp_update_post()
2009-03-24
常用函数-wp_update_post()
说明
该函数更新数据库中的文章。如希望函数正常运行,需传递将被更新的文章编号。
用法
<?php wp_update_post( $...
常用函数-wp_insert_post()
2009-03-24
常用函数-wp_insert_post()
说明
该函数可在数据库中插入文章(及页面)。它可以进行处理变量,检查操作,填充日期/时间等缺失变量等工作。该函数以对象作为变量,返回已创建文章的编号(出错时返回0)。
...
常用函数-wp_delete_post()
2009-03-24
常用函数-wp_delete_post()
说明
根据文章编号删除文章
用法
<?php wp_delete_post($post_id); ?>
示例
...
常用函数-wp_get_single_post()
2009-03-24
常用函数-wp_get_single_post()
说明
按文章编号检索某篇文章。
用法
<?php wp_get_single_post( $postid, $mo...
常用函数-wp_get_recent_posts()
2009-03-24
常用函数-wp_get_recent_posts()
说明
按发表时间检索数据库中的$num最新发表文章。默认检索最近十篇文章。
用法
<?php wp_get_recent_posts...
常用函数-get_extended()
2009-03-24
常用函数-get_extended()
说明
获取扩展项信息 (
<!--more-->
).
第二个破折号后和单词“more”前不能留有空格。“...