在page頁面模板中加入下面這段代碼:
global $post; // wodepress.com The following code needs to be used in the main loop. If you are using it outside the loop, you need to declare the global variable $post
if ( is_page() && $post->post_parent ) {
// This is a subpage
} else {
// This is not a subpage
}
制作wordpress模板的時候經常會用到,這是wordpress開發者必須要掌握的,如果你想開發wordpress模板,得把這個最基本的搞明白了。