我如何根据wordpress中是否为父级来显示小部件

时间:2014-02-16 16:04:16

标签: wordpress wordpress-theming

我想显示左侧边栏小部件,如果页面是父页面,则是子页面列表。否则想要显示右侧边栏。
我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

以下是如何完成的:

if($post->post_parent == '') {
    //show the parent thing here
} else {
    //show the child thing here
}