WordPress获取页面信息函数:get_page_by_path

2016-10-16 wordpress函数
  • 文章介绍
  • 快速入门
  • 评价&建议

描述

wordpress通过页面的路径获取页面信息

使用

  1. <?php get_page_by_path( $page_path$output$post_type ) ?>

参数

$page_path

(string) (必须) 页面路径

Default: None

$output

(string) (可选) 输出类型. OBJECT, ARRAY_N, or ARRAY_A.

Default: OBJECT

$post_type

(string) (可选) 文章类型.

Default: page

返回的值

(mixed)

Null when complete.

示例

这个等价于通过 ‘pagename’ 来查找, 类似: ‘index.php?pagename=parent-page/sub-page’.

Code for the above could be written as (assuming ‘parent-page/sub-page’ is actually the path to a page):

  1. get_page_by_path('parent-page/sub-page');

For non-heirarchical custom post types, you need to use just the slug in tandem with the post_type parameter.

//Returns nothing, assumes animals is the rewrite slug for the animal CPT

  1. get_page_by_path('animals/cat', OBJECT, 'animal');

//Returns the animal with the slug ‘cat’

  1. get_page_by_path('cat', OBJECT, 'animal');

The functions basename() and untrailingslashit() are handy for grabbing the last part of the URL for this:

$page_path = ‘animals/cat/’;

  1. get_page_by_path( basename( untrailingslashit( $page_path ) ) , OBJECT, 'animal');

源文件

get_page_by_path() 位于wp-includes/post.php.

0 0

企业建站推荐正版商业主题,国内专业团队开发,完善售后,是您不二选择。

正版主题商店

主题猫WP建站,累计帮助1300+客户成功建站,为站长提供支持!

立刻开启你的建站之旅
QQ在线客服

服务热线

wordpress建站咨询