• Hello to everybody!
    I wrote my own custom, very simple WP theme with HTML/CSS, without JavaScript.
    How can I insert some slider (WP plugin) to header of my theme?
    I tried to insert shtortcode in post, then call the post in header by

    <?php
    
    $catquery = new WP_Query( 'cat=2/&posts_per_page=10' );
    while($catquery->have_posts()) : $catquery->the_post();
    ?>

    but slider don`t work ??
    Any suggestions?
    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Hi marsislav,

    What shortcode you’d like to add on the header? Assume that your shortcode is [gallery], you can print the shortcode by:

    <?php
    echo do_shortcode("[gallery]");
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘How to add some slider to custom theme’ is closed to new replies.