Are there any ways to display products list on the homepage? I have try to make a sticky post which has products list within it, but it's list aren't go show up on the homepage, rather than single post itself
Thanks before
Are there any ways to display products list on the homepage? I have try to make a sticky post which has products list within it, but it's list aren't go show up on the homepage, rather than single post itself
Thanks before
$loop = new WP_Query( array( 'post_type' => 'products') ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_title( ); ?>
<?php the_content( ); ?>
<?php endwhile; ?>
Paste this code in index.php will work
You must log in to post.