标签: wordpress wordpress-theming
我想显示左侧边栏小部件,如果页面是父页面,则是子页面列表。否则想要显示右侧边栏。 我怎么能这样做?
答案 0 :(得分:0)
以下是如何完成的:
if($post->post_parent == '') { //show the parent thing here } else { //show the child thing here }