函数文档

wlwmanifest_link()

💡 云策文档标注

概述

wlwmanifest_link() 函数用于显示 Windows Live Writer 清单文件的链接,但自 WordPress 6.3.0 版本起已被弃用,不再输出内容。

关键要点

  • wlwmanifest_link() 是一个已弃用的函数,用于生成 Windows Live Writer 清单链接。
  • 该函数在 WordPress 6.3.0 中被标记为弃用,因为 WLW 清单不再使用且已从核心移除。
  • 函数内部调用 _deprecated_function() 来标记弃用状态并通知使用情况。
  • 相关函数包括 _deprecated_function(),位于 wp-includes/functions.php 中。
  • 历史版本:2.3.1 引入,6.3.0 弃用。

📄 原文内容

Displays the link to the Windows Live Writer manifest file.

Source

function wlwmanifest_link() {
	_deprecated_function( __FUNCTION__, '6.3.0' );
}

Changelog

Version Description
6.3.0 Deprecated. WLW manifest is no longer in use and no longer included in core, so the output from this function is removed.
2.3.1 Introduced.