• psdtutorials

    (@psdtutorials)


    Hello there,

    I was wondering how I might go about creating some sort of popup or warning message that would appear when a user first visits the blog??

    Thanks
    Belal Ahmed

Viewing 1 replies (of 1 total)
  • Hello Belal,

    You can make use
    <?php
    add_action(‘pre_get_posts’,’postman’);
    ?>
    here postman is a call back Function

    some like this
    <?php

    function postman()
    {
    echo “<script>alert(‘welcome user’);</script>”;

    }
    Try this … ok Good luck

    bye anes

Viewing 1 replies (of 1 total)
  • The topic ‘Javascript Popup’ is closed to new replies.