';
while ( $query->have_posts() ) {
$query->the_post();
?>
';
} else {
echo esc_html__( 'Sorry, no posts matched your criteria.', 'Avada' );
}
}
$content = ob_get_clean();
$return_data = [
'code' => 200,
'html' => $content,
];
echo wp_json_encode( $return_data );
wp_die();
}
}
}
/* Omit closing PHP tag to avoid "Headers already sent" issues. */