permalink_link

The timeline below displays how wordpress function permalink_link has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Print the permalink of the current post in the loop.
 *
 * @since 0.71
 * @deprecated 1.2.0 Use the_permalink()
 * @see the_permalink()
 */
function permalink_link()
{
    _deprecated_function(__FUNCTION__, '1.2.0', 'the_permalink()');
    the_permalink();
}

WordPress Version: 4.4

/**
 * Print the permalink of the current post in the loop.
 *
 * @since 0.71
 * @deprecated 1.2.0 Use the_permalink()
 * @see the_permalink()
 */
function permalink_link()
{
    _deprecated_function(__FUNCTION__, '1.2', 'the_permalink()');
    the_permalink();
}

WordPress Version: 3.9

/**
 * Print the permalink of the current post in the loop.
 *
 * @since 0.71
 * @deprecated 1.2.0
 * @deprecated Use the_permalink()
 * @see the_permalink()
 */
function permalink_link()
{
    _deprecated_function(__FUNCTION__, '1.2', 'the_permalink()');
    the_permalink();
}

WordPress Version: 3.7

/**
 * Print the permalink of the current post in the loop.
 *
 * @since 0.71
 * @deprecated 1.2
 * @deprecated Use the_permalink()
 * @see the_permalink()
 */
function permalink_link()
{
    _deprecated_function(__FUNCTION__, '1.2', 'the_permalink()');
    the_permalink();
}