文件操作 - 10.0.php
返回文件管理
返回主菜单
删除本文件
文件: /var/www/vec.uaysen.cl/html/wp-content/plugins/buddypress/bp-core/deprecated/10.0.php
编辑文件内容
<?php /** * Deprecated functions. * * @package BuddyPress * @deprecated 10.0.0 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Returns the name of the hook to use once a WordPress Site is inserted into the Database. * * WordPress 5.1.0 deprecated the `wpmu_new_blog` action. As BuddyPress is supporting WordPress back * to 4.9.0, this function makes sure we are using the new hook `wp_initialize_site` when the current * WordPress version is upper or equal to 5.1.0 and that we keep on using `wpmu_new_blog` for earlier * versions of WordPress. * * @since 6.0.0 * @deprecated 10.0.0 * * @return string The name of the hook to use. */ function bp_insert_site_hook() { _deprecated_function( __FUNCTION__, '10.0.0' ); $wp_hook = 'wpmu_new_blog'; if ( function_exists( 'wp_insert_site' ) ) { $wp_hook = 'wp_initialize_site'; } return $wp_hook; } /** * Returns the name of the hook to use once a WordPress Site is deleted. * * WordPress 5.1.0 deprecated the `delete_blog` action. As BuddyPress is supporting WordPress back * to 4.9.0, this function makes sure we are using the new hook `wp_validate_site_deletion` when the * current WordPress version is upper or equal to 5.1.0 and that we keep on using `delete_blog` for * earlier versions of WordPress. * * @since 6.0.0 * @deprecated 10.0.0 * * @return string The name of the hook to use. */ function bp_delete_site_hook() { _deprecated_function( __FUNCTION__, '10.0.0' ); $wp_hook = 'delete_blog'; if ( function_exists( 'wp_delete_site' ) ) { $wp_hook = 'wp_validate_site_deletion'; } return $wp_hook; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件