在WordPress中添加isu tree函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在WordPress中添加isu tree函数相关的知识,希望对你有一定的参考价值。

Add this to functions.php to enable the page-child function is_tree
  1. function is_tree($pid) { // $pid = The ID of the page we're looking for pages underneath
  2. global $post; // load details about this page
  3. if(is_page()&&($post->post_parent==$pid||is_page($pid)))
  4. return true; // we're at the page or at a sub page
  5. else
  6. return false; // we're elsewhere
  7. };

以上是关于在WordPress中添加isu tree函数的主要内容,如果未能解决你的问题,请参考以下文章

在 Wordpress 的函数中使用简码 [重复]

Wordpress主题文件夹中的functions.php作用说明

Wordpress在函数中添加Google Anamytics

php 在wordpress函数中添加一个类,用于自定义和创建博客PREV和NEXT链接

如何在WordPress菜单中添加搜索框?

如何给wordpress网站添加百度分享按钮或悬浮窗