permalink_link()
Deprecated since 1.2.0. It is no longer supported and may be removed in future releases. Use the_permalink() instead.
Print the permalink of the current post in the loop.
No Hooks.
Returns
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.9
function permalink_link() {
_deprecated_function( __FUNCTION__, '1.2.0', 'the_permalink()' );
the_permalink();
}