wordpress is_page(id,title,slug) not working ? Show Message individual page in wordpress. if is_page. @php @wordpress @ispage

Now try with this code. is_page function with add action


add_action('wp', 'page_check');
function page_check()
{
    if (is_page('tv-screen') || is_page('tv-screen-new')) {
        echo 'this is tv screen page';
} else { // your code }