wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



comments_open › WordPress Function

Da1.5.0
Deprecaton/a
comments_open ( $post = null )
Parametri:
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default current post.
    Richiesto: No
    Default: null
Ritorna:
  • (bool) True if the comments are open.
Definito a:
Codex:

Determines whether the current post is open for comments.

For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.


Sorgenti

function comments_open( $post = null ) {
	$_post = get_post( $post );

	$post_id       = $_post ? $_post->ID : 0;
	$comments_open = ( $_post && ( 'open' === $_post->comment_status ) );

	/**
	 * Filters whether the current post is open for comments.
	 *
	 * @since 2.5.0
	 *
	 * @param bool $comments_open Whether the current post is open for comments.
	 * @param int  $post_id       The post ID.
	 */
	return apply_filters( 'comments_open', $comments_open, $post_id );
}