WordPress插入文章函数:wp_insert_post 发布于2022/07/13 WordPress函数wp_insert_post用于插入一篇新的文章。 wp_insert_post( array $postarr, b··· 查看详情
WordPress删除文章函数:wp_delete_post 发布于2022/07/13 WordPress函数wp_delete_post用于删除指定ID的文章 wp_delete_post( int $postid, bool $··· 查看详情
WordPress更新文章函数:wp_update_post 发布于2022/07/13 WordPress函数wp_update_post用于更新现有的文章 wp_update_post( array|object $postarr··· 查看详情
WordPress修改文章状态为公开:wp_publish_post 发布于2022/07/13 WordPress函数wp_publish_post用于修改文章的状态为publish wp_publish_post( int|WP_Pos··· 查看详情
WordPress获取所有页面ID函数:get_all_page_ids 发布于2022/07/13 WordPress函数get_all_page_ids用于获取所有页面的ID,以数组的形式返回结果,该函数没有··· 查看详情
WordPress获取祖先ID函数:get_ancestors 发布于2022/07/13 WordPress函数get_ancestors可以用于获取分类的祖先ID,或页面的祖先ID,包括所有的上级··· 查看详情
WordPress获取页面链接函数:get_page_link 发布于2022/07/13 WordPress函数get_page_link用于获取指定页面的链接 get_page_link( int|WP_Post $post =··· 查看详情
WordPress根据页面路径获取页面对象函数:get_page_by_path 发布于2022/07/13 WordPress函数get_page_by_path根据页面路径获取页面对象 get_page_by_path( string $pag··· 查看详情
WordPress根据页面标题获取页面对象函数:get_page_by_title 发布于2022/07/13 WordPress函数get_page_by_title根据页面标题获取页面对象,如果有相同名称标题的页面,··· 查看详情
WordPress获取页面ID、名称列表函数:get_page_hierarchy 发布于2022/07/13 WordPress函数get_page_hierarchy以页面ID为键,名称为值返回页面列表数组。 get_page_hi··· 查看详情
WordPress获取子页面对象函数:get_page_children 发布于2022/07/13 WordPress函数get_page_children用于获取子页面对象 get_page_children( int $page_id, a··· 查看详情
WordPress获取页面路径函数:get_page_uri 发布于2022/07/13 WordPress函数get_page_uri获取页面的路径,不包含域名部份。 get_page_uri( WP_Post|obj··· 查看详情