Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $args = array(
  2. // Limits comments to a specific post.
  3. // Leave this off if you want all comments, blog-wide.
  4. 'post_id' => $post_id,
  5. // Get only non-approved (ie, pending) comments.
  6. 'status' => 'hold',
  7. // Will only fetch comment IDs.
  8. // If you want full comment objects, leave this off.
  9. 'fields' => 'ids',
  10. );
  11. $comments = get_comments( $args );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement