Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active May 25, 2018 14:33
Show Gist options
  • Save ScarletPonytail/b05aea56a967d2c3f88d8a627bbc44a9 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/b05aea56a967d2c3f88d8a627bbc44a9 to your computer and use it in GitHub Desktop.
Wordpress - Have posts
<?php
$args = array(
'post_type' => 'your_custom_post_type',
'author' => get_current_user_id(),
);
$wp_posts = get_posts($args);
if (count($wp_posts)) {
echo "You have posts!";
} else {
echo "You don't have posts!";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment