Answers for "check current page wordpress"

PHP
0

check current pages is a child page wordpress

<?php

global $post;     // if outside the loop

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

} else {
    // This is not a subpage
}
?>
Posted by: Guest on May-11-2020
0

wordpress get page

get_post( int|WP_Post|null $post = null, string $output = OBJECT, string $filter = 'raw' )
#from: https://developer.wordpress.org/reference/functions/get_post/
Posted by: Guest on April-16-2021

Code answers related to "check current page wordpress"

Browse Popular Code Answers by Language