wp_is_file_mod_allowed

函式
wp_is_file_mod_allowed ( $context )
引數
  • (string) $context The usage context.
    Required:
返回值
  • (bool) True if file modification is allowed, false otherwise.
定義位置
相關方法
wp_json_file_decodewp_kses_allowed_htmlwp_is_maintenance_modewp_is_recovery_modewp_is_site_initialized
引入
4.8.0
棄用
-

wp_is_file_mod_allowed: 這個函式用來檢查WordPress中是否允許修改檔案。檔案修改允許WordPress寫到伺服器上的檔案,這對某些功能是必要的,如更新外掛或主題。

決定是否允許修改檔案。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
function wp_is_file_mod_allowed( $context ) {
/**
* Filters whether file modifications are allowed.
*
* @since 4.8.0
*
* @param bool $file_mod_allowed Whether file modifications are allowed.
* @param string $context The usage context.
*/
return apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' ) || ! DISALLOW_FILE_MODS, $context );
}
function wp_is_file_mod_allowed( $context ) { /** * Filters whether file modifications are allowed. * * @since 4.8.0 * * @param bool $file_mod_allowed Whether file modifications are allowed. * @param string $context The usage context. */ return apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' ) || ! DISALLOW_FILE_MODS, $context ); }
function wp_is_file_mod_allowed( $context ) {
	/**
	 * Filters whether file modifications are allowed.
	 *
	 * @since 4.8.0
	 *
	 * @param bool   $file_mod_allowed Whether file modifications are allowed.
	 * @param string $context          The usage context.
	 */
	return apply_filters( 'file_mod_allowed', ! defined( 'DISALLOW_FILE_MODS' ) || ! DISALLOW_FILE_MODS, $context );
}

常見問題

FAQs
檢視更多 >