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
191
192           /**
193            * Filter the comment status links.
194            *
195            * @since 2.5.0
196            *
197            * @param array $status_links An array of fully-formed status links. Default 'All'.
198            *                            Accepts 'All', 'Pending', 'Approved', 'Spam', and 'Trash'.
199            */
200           $status_links = apply_filters( 'comment_status_links', $status_links );
201           return $status_links;
202      }
203
204      function get_bulk_actions() {
205           global $comment_status;
206
207           $actions = array();
208           if ( in_array( $comment_status, array( 'all', 'approved' ) ) )
209                $actions['unapprove'] = __( 'Unapprove' );