Below is my code. and in loop currect URL is not share to facebook.
So please help me quick.
<?php
$wp_query = new WP_Query(array(‘post_type’ => ‘news’,’order’ => ‘DESC’, ‘order_by’ => ‘date’, ‘posts_per_page’ => ‘3’));
while ($wp_query -> have_posts()) : $wp_query -> the_post();
echo get_the_id();
echo do_shortcode(‘[cresta-social-share]’);
endwhile;
?>