欢迎来到天天文库
浏览记录
ID:5289541
大小:333.37 KB
页数:30页
时间:2017-12-07
《wordpress函数说明(已汉化中文)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、终于有人翻译成中文了,呵呵,以后开发更加方便~转载如下:Functionsbycategory分类函数1、Post,Page,AttachmentandBookmarksFunctions文章,页面,附件和链接的函数get_adjacent_post返回邻近的文章的信息数组,详情见:http://codex.wordpress.org/Function_Reference/get_adjacent_post.get_children检索附件、版本、子页面等信息,一般情况下由父文章执行,详情见:http://codex.wordpre
2、ss.org/Function_Reference/get_children.get_extended获取文章more标签分割的数组.$post是文章的内容get_next_post获取下一篇邻近的文章信息.get_post返回单篇文章的信息数组或对象,$id是文章id,注意这里只能用变量,详情见:http://codex.wordpress.org/Function_Reference/get_post.get_post_ancestors返回基于文章ID的父文章的信息数组.get_post_mime_type返回基于附件ID的方
3、式类型信息.get_post_status返回基于文章ID的文章状态.get_post_type返回基于文章ID的文章类型.get_previous_post返回上一篇邻近的文章信息.get_posts获取一系列文章的集合,详情见:http://codex.wordpress.org/Template_Tags/get_posts.is_post已弃用.is_single判断是否规定的单篇日志.is_sticky判断文章是否置顶.register_post_type注册发布类型,详情见:http://codex.wordpress.
4、org/Function_Reference/register_post_type.wp_get_recent_posts返回最近发布的文章数组.wp_get_single_post返回单篇文章的的数组或对象,同get_post().wp_delete_post删除文章、页面或附件,$force_delete为true时不经过回收站.wp_insert_post发表一片文章或页面,详情见:http://codex.wordpress.org/Function_Reference/wp_insert_post.wp_publish_p
5、ost通过更改文章状态来发表文章wp_update_post更新一篇文章,详情见:http://codex.wordpress.org/Function_Reference/wp_update_post.get_all_page_ids返回所有页面的数组.get_page返回一个页面的对象或数组,详情见:http://codex.wordpress.org/Function_Reference/get_page.get_page_link获取页面的链接,$id是页面ID,$leavename判断是否允许使用页面名,$sample判断
6、是否示例链接get_page_by_path获取一篇基于地址的页面对象或数组,$page_path是页面地址,$output指定输出类型是否对象或数组,默认是对象.get_page_by_title获取一篇基于标题的页面对象或数组,$page_title是页面标题,$output是输出类型,默认对象,$post_type是文章类型,默认page.get_page_children在编号相匹配的页面列表中检索子页面,$page_id是父页面的ID,$pages是被检索的页面数组.get_page_hierarchy返回一个数组,该数组
7、按页面排序次序进行排序,$posts是页面的集合,$parent是父ID.get_page_uri获取指定Id的页面uri.get_pages获取页面的集合,详情见:http://codex.wordpress.org/Function_Reference/get_pages.is_page判断是否当前或指定的页面.page_uri_index为页面URI检索所有页面与附件。检索以页面为父级的文章的附件。wp_list_pages输出页面的列表,$args详情见:http://codex.wordpress.org/Template
8、_Tags/wp_list_pages.add_post_meta为指定文章添加自定义(meta)字段,详情见:http://codex.wordpress.org/Function_Reference/add_post_meta.d
此文档下载收益归作者所有