Skip to content

Instantly share code, notes, and snippets.

@kaweski
Created October 24, 2016 18:50
Show Gist options
  • Save kaweski/51b56933dcee2a9e0bbae3b56cf2c2f9 to your computer and use it in GitHub Desktop.
Save kaweski/51b56933dcee2a9e0bbae3b56cf2c2f9 to your computer and use it in GitHub Desktop.
Verifica se a página atual é filha de alguma outra
/*==================================================
= Verifica se é página filha =
==================================================*/
function is_child($pageID) {
global $post;
if( is_page() && ($post->post_parent==$pageID) )
return true;
else
return false;
}
/*===== End of Verifica se é página filha ======*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment