Skip to content

Instantly share code, notes, and snippets.

@DumahX
Created September 17, 2021 17:35
Show Gist options
  • Save DumahX/42c43a1f335f7ca23b093a23e1fed8e2 to your computer and use it in GitHub Desktop.
Save DumahX/42c43a1f335f7ca23b093a23e1fed8e2 to your computer and use it in GitHub Desktop.
<?php
$user_id = get_current_user_id();
if ( ! $user_id ) {
return; // Just return if user is not logged in.
}
$query = array(
'posts_per_page' => '-1',
'author' => $user_id,
'post_type' => 'action_plan'
);
$posts = new WP_Query( $query );
?>
<?php while ( $posts->have_posts() ) : $posts->the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment