欢迎莅临阿Q的项目

专业WP商业设计开发销售中心

[手册]WordPress 函数参考(Function Reference)

Function Reference 函数参考,函数参考目录: 1. Post, Page, Attachment and Bookmarks Functions 文章,页面,附件和链接的函数 - Posts, Post insertion/removal...
get_all_page_ids <?php print_r( get_all_page_ids() ) ?>
返回所有页面的数组.
get_page <?php get_page( $page_id ) ?>
返回一个页面的对象或数组,详情见:http://codex.wordpress.org/Function_Reference/get_page.
get_page_link <?php get_page_link($id, $leavename, $sample); ?>
获取页面的链接,$id是页面ID,$leavename 判断是否允许使用页面名, $sample 判断是否示例链接
get_page_by_path <?php get_page_by_path( $page_path, $output ) ?>
获取一篇基于地址的页面对象或数组,$page_path是页面地址,$output指定输出类型是否对象或数组,默认是对象.
get_page_by_title <?php get_page_by_title( $page_title, $output, $post_type ) ?>
获取一篇基于标题的页面对象或数组,$page_title是页面标题, $output 是输出类型,默认对象, $post_type 是文章类型,默认page.
get_page_children <?php get_page_children( $page_id, $pages ) ?>
在编号相匹配的页面列表中检索子页面,$page_id是父页面的ID,$pages是被检索的页面数组.
get_page_hierarchy <?php get_page_hierarchy( $posts, $parent ) ?>
返回一个数组,该数组按页面排序次序进行排序,$posts是页面的集合,$parent 是父ID.
get_page_uri <?php get_page_uri( $page_id ) ?>
获取指定Id的页面uri.
get_pages <?php get_pages('arguments'); ?>
获取页面的集合,详情见:http://codex.wordpress.org/Function_Reference/get_pages.
is_page <?php is_page($page); ?>
判断是否当前或指定的页面.
page_uri_index <?php page_uri_index() ?>
为页面URI检索所有页面与附件。检索以页面为父级的文章的附件。
wp_list_pages <?php wp_list_pages( $args ); ?>
输出页面的列表,$args 详情见: http://codex.wordpress.org/Template_Tags/wp_list_pages.

add_post_meta <?php add_post_meta($post_id, $meta_key, $meta_value, $unique); ?>
为指定文章添加自定义(meta)字段, 详情见:http://codex.wordpress.org/Function_Reference/add_post_meta.
delete_post_meta <?php delete_post_meta($post_id, $key, $value); ?>
从指定文章中删除含有指定关键字的所有自定义字段,详情见:http://codex.wordpress.org/Function_Reference/delete_post_meta.
get_post_custom <?php get_post_custom($post_id); ?>
返回指定文章的自定义字段.
get_post_custom_keys <?php get_post_custom_keys($post_id); ?>
获取指定文章的自定义字段名.
get_post_custom_values <?php get_post_custom_values($key, $post_id); ?>
获取指定文章的自定义字段名的值.
get_post_meta <?php $meta_values = get_post_meta($post_id, $key, $single); ?>
返回指定文章中含有指定关键字自定义字段的值,详情见:http://codex.wordpress.org/Function_Reference/get_post_meta.
update_post_meta <?php update_post_meta($post_id, $meta_key, $meta_value, $prev_value); ?>
为指定文章更新自定义(meta)字段.
如果喜欢本文,请分享给朋友们

[手册]WordPress 函数参考(Function Reference)19 篇评论

  1. fannar

    博主,你好,我想问下,为什么我在你的网站里搜索esc_attr时,搜不到,在百度里面搜esc_attr,反而能搜到,想问下这是怎么回事?

    • 阿Q管理员

      我可以搜到包含esc_attr的三篇文章哦。

  2. 戈饭

    你NB,我特意来顶了,我不客气地COPY了!THANK YOU! :mrgreen:

  3. 我的天,实在是太长太多了.
    收藏回去慢慢看..

  4. 博主好

    百度快照就是不更新不知道为什么