Thanks! appreciate your help….
Yeap, correct…. does the plugin allow us to do that?
appreciate your help
Hi!
I’m trying to sort the post/post-type with assigned review..
I setup a posttype eg: ‘my_product’
in my single-my_product.php posttype file, i assign the short_code tie with the post type
<?php echo do_shortcode('[site_reviews_form assign_to="'.get_the_ID().'"]'); ?>
So in the other hand, on other pages… I’m using WP_Query to pull the ‘my_product’ contents, currently i’m sorting the orders by post_date… not sure if I can sort via site_reviews_summary?
$args['post_type'] = 'my_product'
$args['orderby'] = 'post_date';
$args['order'] = 'DESC';
$query = new WP_Query( $args );
thankyou!
-
This reply was modified 8 years, 8 months ago by mavichow.