check current pages is a child page wordpress

PHP
<?php

global $post;     // if outside the loop

if ( is_page() && $post->post_parent ) {
    // This is a subpage

} else {
    // This is not a subpage
}
?>
Source

Also in PHP: