Inline documentation for hooks in wp-admin/includes/class-wp-links-list-table.php.

Props JoshuaAbenazer, kpdesign.
Fixes #26052.

Built from https://develop.svn.wordpress.org/trunk@26340


git-svn-id: http://core.svn.wordpress.org/trunk@26241 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2013-11-23 21:28:11 +00:00
parent 9c5afca0f3
commit f82f00a453

View File

@ -175,6 +175,14 @@ class WP_Links_List_Table extends WP_List_Table {
?><td <?php echo $attributes ?>><?php echo $rating; ?></td><?php
break;
default:
/**
* Fires for each registered custom link column.
*
* @since 2.1.0
*
* @param string $column_name Name of the custom column.
* @param int $link_id Link ID.
*/
?>
<td <?php echo $attributes ?>><?php do_action( 'manage_link_custom_column', $column_name, $link->link_id ); ?></td>
<?php