Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

_wp_credits_build_object_link( string $data )

Retrieve the link to an external library used in WordPress.


Description Description


Parameters Parameters

$data

(string) (Required) External library data (passed by reference).


Top ↑

Source Source

File: wp-admin/includes/credits.php

function _wp_credits_build_object_link( &$data ) {
	$data = '<a href="' . esc_url( $data[1] ) . '">' . esc_html( $data[0] ) . '</a>';
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.