_deprecated_file

函式
_deprecated_file ( $file, $version, $replacement = '', $message = '' )
引數
  • (string) $file The file that was included.
    Required:
  • (string) $version The version of WordPress that deprecated the file.
    Required:
  • (string) $replacement Optional. The file that should have been included based on ABSPATH. Default empty.
    Required:
    Default: (empty)
  • (string) $message Optional. A message regarding the change. Default empty.
    Required:
    Default: (empty)
定義位置
相關方法
ms_deprecated_blogs_file_deprecated_function_deprecated_hookwp_delete_file_deprecated_argument
引入
2.5.0
棄用
-

deprecated_file: 當使用已棄用的檔案時,觸發棄用通知的函式。

將一個檔案標記為過時的檔案,並在它被使用時通知。

有一個鉤子{@see ‘deprecated_file_included’}將被呼叫,可以用來獲得回溯,直到哪個檔案和函式包含了被棄用的檔案。

目前的行為是,如果`WP_DEBUG’為真,則觸發一個使用者錯誤。

這個函式將被用於每個被棄用的檔案。

function _deprecated_file( $file, $version, $replacement = '', $message = '' ) {

	/**
	 * Fires when a deprecated file is called.
	 *
	 * @since 2.5.0
	 *
	 * @param string $file        The file that was called.
	 * @param string $replacement The file that should have been included based on ABSPATH.
	 * @param string $version     The version of WordPress that deprecated the file.
	 * @param string $message     A message regarding the change.
	 */
	do_action( 'deprecated_file_included', $file, $replacement, $version, $message );

	/**
	 * Filters whether to trigger an error for deprecated files.
	 *
	 * @since 2.5.0
	 *
	 * @param bool $trigger Whether to trigger the error for deprecated files. Default true.
	 */
	if ( WP_DEBUG && apply_filters( 'deprecated_file_trigger_error', true ) ) {
		$message = empty( $message ) ? '' : ' ' . $message;

		if ( function_exists( '__' ) ) {
			if ( $replacement ) {
				trigger_error(
					sprintf(
						/* translators: 1: PHP file name, 2: Version number, 3: Alternative file name. */
						__( 'File %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
						$file,
						$version,
						$replacement
					) . $message,
					E_USER_DEPRECATED
				);
			} else {
				trigger_error(
					sprintf(
						/* translators: 1: PHP file name, 2: Version number. */
						__( 'File %1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ),
						$file,
						$version
					) . $message,
					E_USER_DEPRECATED
				);
			}
		} else {
			if ( $replacement ) {
				trigger_error(
					sprintf(
						'File %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.',
						$file,
						$version,
						$replacement
					) . $message,
					E_USER_DEPRECATED
				);
			} else {
				trigger_error(
					sprintf(
						'File %1$s is <strong>deprecated</strong> since version %2$s with no alternative available.',
						$file,
						$version
					) . $message,
					E_USER_DEPRECATED
				);
			}
		}
	}
}

常見問題

FAQs
檢視更多 >