according to me below the code can achieve your goal.
try this code
function getUserPosts() { $args = array( 'order' => 'ASC', ); $users = get_users( $args ); foreach ($users as $key => $value) { // WP_Query arguments $args = array( 'post_type' => array( 'userdatax' ), 'post_status' => array( 'publish' ), 'author' => $value->ID, 'posts_per_page' => '-1', 'order' => 'DESC', 'orderby' => 'date', ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); // do something echo the_title(); } } else { // no posts found } // Restore original Post Data wp_reset_postdata(); } } add_action('init','getUserPosts');
Akshay shah
source share