permalink_link()

In this article

This function has been deprecated. Use the_permalink() instead.

Print the permalink of the current post in the loop.

Description

See also

Source

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

Changelog

VersionDescription
1.2.0Use the_permalink()
0.71Introduced.

User Contributed Notes

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