• Resolved deepakbhatt619

    (@deepakbhatt619)


    getting error by image slider….. i’m using slider wd bt its nnot showing on webpage that i’m creating

Viewing 5 replies - 1 through 5 (of 5 total)
  • Jamie

    (@codente)

    We would need a lot more more information than that to help you

    1) What plugin are you using?
    2) A link to the page with the issue
    3) What error you are getting?
    4) Are you getting an error in the admin or on the live site?

    Thread Starter deepakbhatt619

    (@deepakbhatt619)

    problem solved…thanx for your recognization…

    Thread Starter deepakbhatt619

    (@deepakbhatt619)

    hi i made a custom post type products.. now i want to show all of the custom posts in a single page..want to link all custom posts in a page

    i made a product-template.php template file and tried this query

    <?php
    				$args = array( 'post_type' => 'product', 'posts_per_page' => 10 );
    				$loop = new WP_Query( $args );
    					while ( $loop->have_posts() ) : $loop->the_post();
    					the_title();
    						echo '<div class="entry-content">';
    						the_content();
    						echo '</div>';
    					endwhile;
    			?>

    aftr using this query i’m getting the posts bt only text contents not all post layout including featured image and layout
    please help me out i’m new

    You should create a new thread for your new question.

    Thread Starter deepakbhatt619

    (@deepakbhatt619)

    ohhh thanks …..

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘getting error by image slider’ is closed to new replies.