Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comments_open

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1154
1155      /**
1156       * Filter whether the current post is open for comments.
1157       *
1158       * @since 2.5.0
1159       *
1160       * @param bool        $open    Whether the current post is open for comments.
1161       * @param int|WP_Post $post_id The post ID or WP_Post object.
1162       */
1163      return apply_filters( 'comments_open', $open, $post_id );
1164 }
1165
1166 /**
1167  * Whether the current post is open for pings.
1168  *
1169  * @since 1.5.0
1170  *
1171  * @param int|WP_Post $post_id Post ID or WP_Post object. Default current post.
1172  * @return bool True if pings are accepted