WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 750 | $posts_columns['cb'] = '<input type="checkbox" />'; |
| 751 | /* translators: manage posts column name */ |
| 752 | $posts_columns['title'] = _x('Post', 'column name'); |
| 753 | $posts_columns['author'] = __('Author'); |
| 754 | $posts_columns['categories'] = __('Categories'); |
| 755 | $posts_columns['tags'] = __('Tags'); |
| 756 | if ( !isset($_GET['post_status']) || !in_array($_GET['post_status'], array('pending', 'draft', 'future')) ) |
| 757 | $posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>'; |
| 758 | $posts_columns['date'] = __('Date'); |
| 759 | $posts_columns = apply_filters('manage_posts_columns', $posts_columns); |
| 760 | |
| 761 | return $posts_columns; |
| 762 | } |
| 763 | |
| 764 | // define the columns to display, the syntax is 'internal name' => 'display name' |
| 765 | /** |
| 766 | * {@internal Missing Short Description}} |
| 767 | * |
| 768 | * @since unknown |