Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_status_links

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
170                if ( !empty( $_REQUEST['s'] ) )
171                     $link = add_query_arg( 's', esc_attr( stripslashes( $_REQUEST['s'] ) ), $link );
172                */
173                $status_links[$status] = "<a href='$link'$class>" . sprintf(
174                     translate_nooped_plural( $label, $num_comments->$status ),
175                     number_format_i18n( $num_comments->$status )
176                ) . '</a>';
177           }
178
179           $status_links = apply_filters( 'comment_status_links', $status_links );
180           return $status_links;
181      }
182
183      function get_bulk_actions() {
184           global $comment_status;
185
186           $actions = array();
187           if ( in_array( $comment_status, array( 'all', 'approved' ) ) )
188                $actions['unapprove'] = __( 'Unapprove' );