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

permalink_link()

Print the permalink of the current post in the loop.


Description

See also


Source

File: wp-includes/deprecated.php

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


Changelog

Changelog
Version Description
WP-1.2.0 Use the_permalink()
WP-0.71 Introduced. This function has been deprecated. Use the_permalink() instead.