Uses
Uses | Description |
---|---|
wp-admin/includes/class-wp-links-list-table.php: manage_link_custom_column | Fires for each registered custom link column. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
Handles the default column output.
(object) (Required) Link object.
(string) (Required) Current column name.
File: wp-admin/includes/class-wp-links-list-table.php
public function column_default( $link, $column_name ) { /** * 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. */ do_action( 'manage_link_custom_column', $column_name, $link->link_id ); }
Version | Description |
---|---|
4.3.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_links_list_table/column_default