Inline documentation for hooks in wp-admin/includes/class-wp-links-list-table.php.
Props JoshuaAbenazer, kpdesign. Fixes #26052. git-svn-id: https://develop.svn.wordpress.org/trunk@26340 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5b90a5b6e3
commit
30600cefa0
@ -175,6 +175,14 @@ class WP_Links_List_Table extends WP_List_Table {
|
|||||||
?><td <?php echo $attributes ?>><?php echo $rating; ?></td><?php
|
?><td <?php echo $attributes ?>><?php echo $rating; ?></td><?php
|
||||||
break;
|
break;
|
||||||
default:
|
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>
|
<td <?php echo $attributes ?>><?php do_action( 'manage_link_custom_column', $column_name, $link->link_id ); ?></td>
|
||||||
<?php
|
<?php
|
||||||
|
Loading…
Reference in New Issue
Block a user