Get posts with WP_Query by postname
-
I need query for getting posts that matches the given string.
I have constructed this, which is not working.
<!-- if Product is mentioned --> <?php if($product!="") { $query = "name=" . $product . "&posts_per_page=10"; $my_query = new WP_Query($query); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title(); ?> <?php endwhile; } ?>
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Get posts with WP_Query by postname’ is closed to new replies.