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

Slideshow missing when page loads? [closed]

The name home.php is reserved for use by the Template Hierarchy as the Blog Posts Index. To create a custom template for the Site Front Page, use front-page.php. Another issue: your slideshow jQuery script needs to have a no-conflict wrapper, and should not execute until the page is loaded. Instead of this: $(function() …you need … Read more

Echo option page form field value

I think your issue is in this section here: public function bguru_options_page() { // Set class property $this->options = get_option( ‘bguru_logo’ ); $this->options = get_option( ‘bguru_vimeo’ ); $this->options = get_option( ‘bguru_slide_one_image’ ); $this->options = get_option( ‘bguru_slide_one_heading’ ); $this->options = get_option( ‘bguru_slide_one_text’ ); $this->options = get_option( ‘bguru_slogan_heading’ ); $this->options = get_option( ‘bguru_slogan_description’ ); What I would … Read more

Slider height settings

On of the themes you tested (I guess not in preview, but just switching it active) had only small image sizes registered via add_image_size(). There’s a very popular plugin that you can use to “fix” that: Regenerate Thumbnails.

identify a particular page with php

As I understand you want to display your slide in specific pages, so you need to control it using if condition. debug the code before use, Only on front page / home page is_front_page(); // Use this function More reading . https://developer.wordpress.org/reference/functions/is_home/ https://developer.wordpress.org/reference/functions/is_front_page/ Get Current page name $pagename = get_query_var(‘pagename’); More details , stack overflow … Read more

How to make schedule for slider images in WordPress

i hope solve your problem this plugin please try : 1] https://wordpress.org/plugins/custom-banners/ 2] https://wordpress.org/plugins/add-custom-header-images/ 3] https://www.wp-tweaks.com/change-the-header-image-per-page-wordpress/ 4] https://wordpress.org/plugins/unique-headers/ 5] https://wordpress.org/plugins/smart-slider-3/

How can I display most commented or viewed post as slide

To display “most viewed” you would need to keep a view count (which WordPress does not do by default). They do, however, keep comment counts. WP Beginner has articles for each of these circumstances: “How to Display Popular Posts by Views in WordPress without a Plugin” “How to Display Most Commented Posts in WordPress Without … Read more