- Timestamp:
- 12/06/2014 09:31:41 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-links-list-table.php
r29871 r30754 188 188 break; 189 189 default: 190 /**191 * Fires for each registered custom link column.192 *193 * @since 2.1.0194 *195 * @param string $column_name Name of the custom column.196 * @param int $link_id Link ID.197 */198 190 ?> 199 <td <?php echo $attributes ?>><?php do_action( 'manage_link_custom_column', $column_name, $link->link_id ); ?></td> 191 <td <?php echo $attributes ?>><?php 192 /** 193 * Fires for each registered custom link column. 194 * 195 * @since 2.1.0 196 * 197 * @param string $column_name Name of the custom column. 198 * @param int $link_id Link ID. 199 */ 200 do_action( 'manage_link_custom_column', $column_name, $link->link_id ); 201 ?></td> 200 202 <?php 201 203 break;
Note: See TracChangeset
for help on using the changeset viewer.