WordPress pre-build slider

No, WordPress does not have a slider feature built in. It will be either a plugin or your theme that has added the slider. For modifying or adjusting your slider, please go to the support area for the plugin/theme you used. If you wish to develop your own, there are many, many tutorials out there … Read more

my index does not show the slider in start

Your image URLs are wrong: they link to a directory above the root directory. This cannot work. Place the images in the theme instead and use get_template_directory_uri(): src=”https://wordpress.stackexchange.com/questions/101801/<?php echo get_template_directory_uri() .”/images/slider/xfs_968x350_s80_mainTop2.jpg’; ?>”

help me about my slide bar

As far as i understand your question is that you want to get posts from specific category. <div class=”callbacks_container”> <ul class=”rslides” id=”slider3″> <?php $the_query = new WP_Query(array(‘order’ =>’descending’,’orderby’ =>’ID’,’posts_per_page’ =>’5′, ‘category_name’ => ‘news’)); while ($the_query->have_posts()) : $the_query->the_post(); ?> <li> <?php if ( has_post_thumbnail() ) { the_post_thumbnail(‘large’); } else { echo ‘<img alt=”No Image” src=”‘ . … Read more

Where to adjust presets for slider options “auto rotate” (3, 5, 10, 15 seconds)? [closed]

In anybody needs this in the future I found a quick and easy workaround: you could just adjust the slider interval in the shortcode. First you have to switch to the “classic mode” (turn the Visual Composer off) and then find the shortcode that defines the interval: [vc_gallery interval=”10″ images=”22390,23006″ img_size=”full”] You can then set … Read more