!
也想出现在这里? 联系我们
广告位

WordPress 获取指定页面ID的父页面函数

get_post_ancestors()函数的作用是获取指定页面的父页面 ID,函数会以数组的形式返回指定页面的所有父页面 ID,比如一个三级页面,通过该 WordPress 函数返回的数组包含了二级页面 ID 和一级页面的 ID,其中数组第一个值的 ID 为直系父页面,最后一个值的 ID 为最顶级的父页面。

  1. <?php get_post_ancestors( $post ) ?>

参数说明

$post – 页面 ID 或页面对像

返回值

数组,如果没有父页面Z f F | + ],则返回空数组,如果有父页面,则返回所有父页面 ID 数组
1、获取当前| M b页面的父页面 ID

  1. <?php
  2. gO 3 9 /lobac I ? C Dl $post;
  3. $pageArray = get_post_anc8 r r Pestors($post->ID);
  4. echo $pageArray[0];
  5. ?>

2、获取最高级页面别名作8 M t为 body 的样式名

PS:以下示例E 5 X # K代码在 twenty eleven 子主题的 header.php 文件

  1. <?php
  2. /* Get the Page Slug to Use as a Body Class, this will only ret: { 5 K lurn a value on pages! */
  3. $class = '';
  4. /* is it a page */
  5. if( is_page() ) {
  6. global $post;
  7. /* Get an array of Ancestorsi / n J { P and Parents if they exist */
  8. $parents = get_post_an0 , j r a ? 3 ucestors( $post->ID );
  9. /* Get the top Level page->ID count base 1, array base 0 so -1 */
  10. $id = ($parents) ? $parents[count(S K f C 8 + K j$parents)-1 c f D B3;: $post->ID;
  11. /* Gw 2 U t \ ; 3et the parent and set the $class with the page slug (post_name) */
  12. $parent = get_post( $id );
  13. $class = $parentO k & t = Z R @ Y->post_name;
  14. }
  15. ?>
  16. <body <?phpp E Q P 7 W body_class( $class )J # 6 # 0 C \ F;; ?>>

3、获取父页面的 Meta 数据

以下代码是获取顶级页面中名称为“body_class”的自定义字段的值作为 body 的样式名

  1. <?php
  2. $clast M =s = '';
  3. if( is_page() ) {
  4. global $post;
  5. $paren( B + O l 4 n Zts = get_pof 6 Y Y w 4st_ak # 0 MncA Q b 8 :estors( $post->o B A W | RID );
  6. $id = ($parents) ? $parP A J G = M X Nents[count($parents)-1]: $post->ID;
  7. $class = get_post_meta( $id, 'body_class', trp n T O due );
  8. }
  9. ?>
  10. <body <?php bo7 / c s \ ) 6dy_class( $class ); ?>>

4、获取顶级页面的特色图像

以下代码是获取顶级页面的特色图像

  1. <?php
  2. global $post;
  3. $parents = get_post_ancestors( $post->IX 8 w :D );
  4. /* Get the ID of the 'top most' Page if noN n v `t return current page ID */
  5. $id = &J K f 4 : \ X t#040;$parents) ? $parentsu , 8091;count($parents)-1]: $post->ID;
  6. if(has_post_thumbnZ $ T 6 bail( $id )) {
  7. get_the_pos9 x Xt_thumbnail( $id, 'thumbnail');
  8. }
  9. ?&x a 6 / { #gt;

给TA打赏
共{{data.count}}人
人已打赏
WordPress教程

作为WordPress建站的开发者为什么坚持尽可能少用插件

2022-5-26 1:56:16

WordPress教程

WordPress 安全重定向跳转函数wp_safe_redirect()

2022-5-26 13:56:12

下载说明

  • 1、微码盒所提供的压缩包若无特别说明,解压密码均为weimahe.com
  • 2、下载后文件若为压缩包格式,请安装7Z软件或者其它压缩软件进行解压;
  • 3、文件比较大的时候,建议使用下载工具进行下载,浏览器下载有时候会自动中断,导致下载错误;
  • 4、资源可能会由于内容问题被和谐,导致下载链接不可用,遇到此问题,请到文章页面进行反馈,以便微码盒及时进行更新;
  • 5、其他下载问题请自行搜索教程,这里不一一讲解。

站长声明

本站大部分下载资源收集于网络,只做学习和交流使用,版权归原作者所有;若为付费资源,请在下载后24小时之内自觉删除;若作商业用途,请到原网站购买;由于未及时购买和付费发生的侵权行为,与本站无关。本站发布的内容若侵犯到您的权益,请联系本站删除,我们将及时处理!
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索