_wp_credits_build_object_link() – Retrieve the link to an external library used in WordPress.
You appear to be a bot. Output may be restricted
Description
Retrieve the link to an external library used in WordPress.
Usage
_wp_credits_build_object_link( $data );
Parameters
- $data
- ( string ) required – External library data (passed by reference).
Returns
void
Source
File name: wordpress/wp-admin/includes/credits.php
Lines:
1 to 3 of 3
function _wp_credits_build_object_link( &$data ) { $data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>'; }