Avatar of curiouswebster
curiouswebster
Flag for United States of America

asked on 

WordPress & PHP: showing Hello World! only on Page 37?

I want to display a message on Page 37, only. I have tried various methods, including the following:

    $page_id=get_query_var('page_id');
    if ( $page_id == 37) {
        echo "Hello World!";
    }

But clearly, there is more to get_query_var(). It seems to hang WordPress.

What is the safest way to query the WP page for its ID?

Thanks
Web DevelopmentPHPWeb Languages and StandardsWordPressWeb Development Software

Avatar of undefined
Last Comment
Phonebuff

8/22/2022 - Mon