'trh_pricing', 'post_status' => 'publish', 'order' =>'ASC', 'posts_per_page' => 3 ));
if($plan_query->have_posts()) : ?>
have_posts() ) : $plan_query->the_post();
$plan_currency = get_post_meta( get_the_ID(), 'plan_currency', true );
$plan_price = get_post_meta( get_the_ID(), 'plan_price', true );
$plan_duration = get_post_meta( get_the_ID(), 'plan_duration', true );
$plan_active = get_post_meta( get_the_ID(), 'plan_active', true );
$btn_text = get_post_meta( get_the_ID(), 'plan_btn_text', true );
$btn_url = get_post_meta( get_the_ID(), 'plan_btn_url', true );
$btn_target = get_post_meta( get_the_ID(), 'plan_btn_target', true );
if($btn_target==true){
$btn_target="target=_blank";
} else {
$btn_target="target=_self";
}
?>