Wordpress如果当前页面是父菜单或子菜单?

时间:2015-01-15 15:29:01

标签: wordpress parent-child sidebar

我有这个侧边栏只在当前页面是父菜单项或子菜单项时才相关 有什么方法可以让if statement在Wordpress中检查一下吗?我确实找到了一些关于这方面的信息,但是我的sidebar.php中没有一个可以使用。

有关于此的任何想法吗?感谢

1 个答案:

答案 0 :(得分:0)

您可以尝试将此行放在sidebar.php文件的顶部,然后使用此参数包围代码

if(0 != count( get_children( array(post_parent => $post->ID) ) ) ) { 
   <sidebar code> 
}