当前位置:首页 > CMS教程 > WordPress > 列表

wordpress获取当前页面的ID值

发布:smiling 来源: PHP粉丝网  添加日期:2018-11-30 10:59:16 浏览: 评论:0 

在wodrpress的主题制作或者主题修改的时候,经常需要获取当前页面的ID值。

所以说获取当前页面的ID值,还是相当重要的。因为是小白,所以说没有老鸟那么熟练,所以在这些天定制wordpress主题的过程中的积累了些获取当前加载页面的ID值:

(1)方法一:

$postid = get_the_ID(); 

echo $postid;  //打印出当前加载页面的ID值

(2)方法二:

$current_id = get_queried_object_id(); 

echo $current_id;  //打印出当前加载页面的ID值

(3)方法三:

$c_id_object = get_queried_object();

$c_id = $c_id_object -> ID;

echo $c_id;  //打印出当前加载页面的ID值

新增:

(4)

global $post;

$id = $post -> ID;

echo $id; //打印出当前页面的ID

如何获取父级页面的ID:

  1. global $post
  2. $id = $post -> ID; 
  3. $parent = get_post_ancestors($post -> ID); 
  4. print_r($parent);  //打印出 Array ( [0] => 339 )  

获取父级ID第二种方案:

  1. global $post
  2. $parent_id = $post -> post_parent; 
  3. echo $parent_id//打印出父级页面的ID 

注释:

  1. get_queried_object() : 当前页面对象下所有的属性 
  2.  {  
  3. ["ID"]=> int(339)  
  4. ["post_author"]=> string(1) "1"  
  5. ["post_date"]=> string(19) "2017-08-04 15:13:09"  
  6. ["post_date_gmt"]=> string(19) "2017-08-04 07:13:09"  
  7. ["post_content"]=> string(3040) "三一重工股份有限公司由三一集团投资创建于1994年”。"  
  8. ["post_title"]=> string(12) "三一介绍"  
  9. ["post_excerpt"]=> string(0) ""  
  10. ["post_status"]=> string(7) "publish"  
  11. ["comment_status"]=> string(6) "closed"  
  12. ["ping_status"]=> string(6) "closed"  
  13. ["post_password"]=> string(0) ""  
  14. ["post_name"]=> string(36) "三一介绍"  
  15. ["to_ping"]=> string(0) ""  
  16. ["pinged"]=> string(0) ""  
  17. ["post_modified"]=> string(19) "2017-08-04 16:42:44"  
  18. ["post_modified_gmt"]=> string(19) "2017-08-04 08:42:44"  
  19. ["post_content_filtered"]=> string(0) ""  
  20. ["post_parent"]=> int(0) //获取父级的ID -> 很重要,经常用 
  21. ["guid"]=> string(39) "http://localhost/wordpress/?page_id=339"  
  22. ["menu_order"]=> int(0) ["post_type"]=> string(4) "page"  
  23. ["post_mime_type"]=> string(0) ""  
  24. ["comment_count"]=> string(1) "0"  
  25. ["filter"]=> string(3) "raw"  
  26.  }  

Tags: wordpress 当前页面ID

分享到: