Forum Replies Created

Viewing 1 replies (of 1 total)
  • incog01

    (@incog01)

    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 1 replies (of 1 total)