函数文档

install_global_terms()

💡 云策文档标注

概述

install_global_terms() 是一个已弃用的 WordPress 函数,用于安装全局术语,自 6.1.0 版本起不再推荐使用。

关键要点

  • 函数 install_global_terms() 已被弃用,建议开发者避免在新代码中使用。
  • 弃用信息通过 _deprecated_function() 函数标记,该函数位于 wp-includes/functions.php 中。
  • 函数在 3.0.0 版本引入,6.1.0 版本弃用,开发者应关注版本兼容性。

📄 原文内容

Install global terms.

Source

function install_global_terms() {
	_deprecated_function( __FUNCTION__, '6.1.0' );
}

Changelog

Version Description
6.1.0 Deprecated.
3.0.0 Introduced.