is_post_waiting_moderation( boolean|integer $post_id = false )
Description #
Check if post is waiting moderation.
Parameters #
- $post_idboolean | integer (Optional) question or answer ID. Default value: false
Source #
File: includes/theme.php
function is_post_waiting_moderation( $post_id = false ) {
	if ( get_post_status( $post_id ) === 'moderate' ) {
		return true;
	}
	return false;
}
Expand full source code Collapse full source code View on GitHub: includes/theme.php:80
  Add your comment