• tfrett

    (@tfrett)


    How do I remove the carousel from my page?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tfrett

    (@tfrett)

    Can anyone help? Whenever I post on this theme support page no one replies.

    go to appearance > editor > header.php and remove following code. It worked for me

    <div id=”slider”>
    <?php
    $carousel_cat = get_theme_mod(‘carousel_setting’,’1′);
    $carousel_count = get_theme_mod(‘count_setting’,’4′);
    $new_query = new WP_Query( array( ‘cat’ => $carousel_cat , ‘showposts’ => $carousel_count ));
    while ( $new_query->have_posts() ) : $new_query->the_post(); ?>

    <div class=”item”>
    “><?php the_post_thumbnail( ‘anissa-carousel-pic’ ); ?>
    <div class=”entry-dateslide”>
    <?php the_time( get_option( ‘date_format’ ) ); ?>
    </div><!– .entry-datetop –>
    <h3>“><?php the_title();?></h3>
    </div>

    <?php
    endwhile;
    wp_reset_postdata();
    ?>

    </div><!– #slider –>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove post carousel’ is closed to new replies.