permalink_link()WP 0.71

Deprecated from version 1.2.0. It is no longer supported and can be removed in future releases. Use the_permalink() instead.

Print the permalink of the current post in the loop.

No Hooks.

Return

null. Nothing (null).

Usage

permalink_link();

Notes

Changelog

Since 0.71 Introduced.
Deprecated since 1.2.0 Use the_permalink()

permalink_link() code WP 6.5.2

function permalink_link() {
	_deprecated_function( __FUNCTION__, '1.2.0', 'the_permalink()' );
	the_permalink();
}