WordPress Version: 4.6
/**
* Print the permalink of the current post in the loop.
*
* @since 0.71
* @deprecated 1.2.0 Use the_permalink()
* @see the_permalink()
*/
function permalink_link()
{
_deprecated_function(__FUNCTION__, '1.2.0', 'the_permalink()');
the_permalink();
}