Sto cercando di creare una semplice funzione per fare un "test di stato". L'obiettivo è testare e vedere se la pagina corrente visualizzata ha pagine secondarie o meno. Usando questo per modificare il layout per accogliere le pagine secondarie. Il seguente codice sembra che dovrebbe funzionare, ma purtroppo, nessun dado.
Qualcuno vede cosa mi manca?
function is_subpage() {
global $post; // load details about this page
if ( is_page() && $post->post_parent ) { // test to see if the page has a parent
return true; // return true, confirming there is a parent
} else { // there is no parent so ...
return false; // ... the answer to the question is false
}
}