Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_form_comments_closed

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
2276      }
2277
2278      // Exit the function when comments for the post are closed.
2279      if ( ! comments_open( $post_id ) ) {
2280           /**
2281            * Fires after the comment form if comments are closed.
2282            *
2283            * @since 3.0.0
2284            */
2285           do_action( 'comment_form_comments_closed' );
2286
2287           return;
2288      }
2289
2290      $commenter     = wp_get_current_commenter();
2291      $user          = wp_get_current_user();
2292      $user_identity = $user->exists() ? $user->display_name : '';
2293
2294      $args = wp_parse_args( $args );