wpmu_update_blogs_date()

wpmu_update_blogs_date() 更新当前站点的“上次更新”字段。 Update the la…

wpmu_update_blogs_date()

更新当前站点的“上次更新”字段。
Update the last_updated field for the current site.

目录锚点:#参数#源码


参数(Parameters)

参数 类型 说明

源码(Source)

/**
 * Update the last_updated field for the current blog.
 *
 * @since MU
 *
 * @global wpdb $wpdb
 */
function wpmu_update_blogs_date() {
	global $wpdb;

	update_blog_details( $wpdb->blogid, array('last_updated' => current_time('mysql', true)) );
	/**
	 * Fires after the blog details are updated.
	 *
	 * @since MU
	 *
	 * @param int $blog_id Blog ID.
	 */
	do_action( 'wpmu_blog_updated', $wpdb->blogid );
}
更新版本 源码位置 使用 被使用
MU (3.0.0) wp-includes/ms-blogs.php 17 11
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册