permalink_link()
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
- See: the_permalink()
Changelog
Since 0.71 | Introduced. |
Deprecated since 1.2.0 | Use the_permalink() |
permalink_link() permalink link code WP 6.7.1
function permalink_link() { _deprecated_function( __FUNCTION__, '1.2.0', 'the_permalink()' ); the_permalink(); }