Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #10523
    xpyouth
    Member

    Hi Sakin,

    If you go to my site http://www.xpyouth.org

    I removed the search bar from the right header using a child theme, but I would like to put a shortcode (countdown timer) right under the social icon where the search bar used to be. Can you kindly tell me know to do that? I do not want to use the widget stuff b/c the header spacing is too big.

    http://www.xpyouth.org

    #10557
    Sakin
    Keymaster

    @xpyouth: In your child theme functions.php, you can create new function and add it through action hook. See the example below.

    /**
     * Shows Countdown Timer
     */
    function catcheverest_countdown_timer() { 
    /* Your Timer Code */
    }
    add_action( 'catcheverest_hgroup_wrap', 'catcheverest_countdown_timer', 20 );
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Right Header Shortcode’ is closed to new replies.