Make WordPress Core


Ignore:
Timestamp:
04/04/2023 02:54:31 PM (19 months ago)
Author:
SergeyBiryukov
Message:

General: Remove Windows Live Writer manifest file.

The XML manifest was originally added in WordPress 2.3.1 to turn on tagging support in Windows Live Writer.

Given that the last major release of the software came out in 2012, and it was completely discontinued in January 2017, including this file in core no longer provides any benefit.

Follow-up to [6192], [49904].

Props joostdevalk, ayeshrajans, flixos90, jhabdas, frank-klein, wtranch, SergeyBiryukov.
Fixes #41404.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r55436 r55620  
    46284628    );
    46294629}
     4630
     4631/**
     4632 * Displays the link to the Windows Live Writer manifest file.
     4633 *
     4634 * @link https://msdn.microsoft.com/en-us/library/bb463265.aspx
     4635 * @since 2.3.1
     4636 * @deprecated 6.3.0 WLW manifest is no longer in use and no longer included in core,
     4637 *                   so the output from this function is removed.
     4638 */
     4639function wlwmanifest_link() {
     4640    _deprecated_function( __FUNCTION__, '6.3.0' );
     4641}
Note: See TracChangeset for help on using the changeset viewer.