wlwmanifest_link

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

WordPress Version: 6.3

/**
 * Displays the link to the Windows Live Writer manifest file.
 *
 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 * @deprecated 6.3.0 WLW manifest is no longer in use and no longer included in core,
 *                   so the output from this function is removed.
 */
function wlwmanifest_link()
{
    _deprecated_function(__FUNCTION__, '6.3.0');
}

WordPress Version: 6.1

/**
 * Displays the link to the Windows Live Writer manifest file.
 *
 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 */
function wlwmanifest_link()
{
    printf('<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="%s" />' . "\n", includes_url('wlwmanifest.xml'));
}

WordPress Version: 5.3

/**
 * Display the link to the Windows Live Writer manifest file.
 *
 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 */
function wlwmanifest_link()
{
    echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' . includes_url('wlwmanifest.xml') . '" /> ' . "\n";
}

WordPress Version: 4.6

/**
 * Display the link to the Windows Live Writer manifest file.
 *
 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 */
function wlwmanifest_link()
{
    echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="', includes_url('wlwmanifest.xml'), '" /> ', "\n";
}

WordPress Version: 4.0

/**
 * Display the link to the Windows Live Writer manifest file.
 *
 * @link http://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 */
function wlwmanifest_link()
{
    echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="', includes_url('wlwmanifest.xml'), '" /> ', "\n";
}

WordPress Version: 3.7

/**
 * Display the link to the Windows Live Writer manifest file.
 *
 * @link http://msdn.microsoft.com/en-us/library/bb463265.aspx
 * @since 2.3.1
 */
function wlwmanifest_link()
{
    echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="' . get_bloginfo('wpurl') . '/wp-includes/wlwmanifest.xml" /> ' . "\n";
}