manage_link_custom_column WordPress Action Hook
The manage_link_custom_column hook allows you to add custom columns to the link manager screen in the WordPress admin. This can be useful for displaying additional information about your links, such as the link category or the date added.
do_action( 'manage_link_custom_column', string $column_name , int $link_id ) #
Fires for each registered custom link column.
Parameters
- $column_name
(string)Name of the custom column.
- $link_id
(int)Link ID.
Source
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |