Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: manage_posts_columns

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
125 // define the columns to display, the syntax is 'internal name' => 'display name'
126 $posts_columns = array(
127   'id'         => __('ID'),
128   'date'       => __('When'),
129   'title'      => __('Title'),
130   'categories' => __('Categories'),
131   'comments'   => __('Comments'),
132   'author'     => __('Author')
133 );
134 $posts_columns = apply_filters('manage_posts_columns', $posts_columns);
135
136 // you can not edit these at the moment
137 $posts_columns['control_view']   = '';
138 $posts_columns['control_edit']   = '';
139 $posts_columns['control_delete'] = '';
140
141 ?>
142
143 <table width="100%" cellpadding="3" cellspacing="3">