返回介绍

core_update_footer()

发布于 2017-09-10 21:56:41 字数 3881 浏览 1233 评论 0 收藏 0

core_update_footer( string $msg = '' )

description


参数

$msg

(string) (Optional)

Default value: ''


返回值

(string)


源代码

File: wp-admin/includes/update.php

function core_update_footer( $msg = '' ) {
	if ( !current_user_can('update_core') )
		return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );

	$cur = get_preferred_from_update_core();
	if ( ! is_object( $cur ) )
		$cur = new stdClass;

	if ( ! isset( $cur->current ) )
		$cur->current = '';

	if ( ! isset( $cur->url ) )
		$cur->url = '';

	if ( ! isset( $cur->response ) )
		$cur->response = '';

	switch ( $cur->response ) {
	case 'development' :
		/* translators: 1: WordPress version number, 2: WordPress updates admin screen URL */
		return sprintf( __( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), get_bloginfo( 'version', 'display' ), network_admin_url( 'update-core.php' ) );

	case 'upgrade' :
		return '<strong><a href="' . network_admin_url( 'update-core.php' ) . '">' . sprintf( __( 'Get Version %s' ), $cur->current ) . '</a></strong>';

	case 'latest' :
	default :
		return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
	}
}

Collapse full 源代码 code View on Trac


相关函数

Uses

  • wp-admin/includes/update.php: get_preferred_from_update_core()
  • wp-includes/capabilities.php: current_user_can()
  • wp-includes/l10n.php: __()
  • wp-includes/general-template.php: get_bloginfo()
  • wp-includes/link-template.php: network_admin_url()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 1You must log in to vote on the helpfulness of this note Contributed by pixeline

    I find it annoying when the admin footer tells you that a new Wordpress version is available (for example “Get Version 4.6.1”) but does not tell you what your current version is.
    Here is a patch:

    
    // Improve Admin footer update notice.
    if (!function_exists('smarter_update_footer')){
    	function smarter_update_footer( $msg = '' ) {
    		if ( !current_user_can('update_core') )
    			return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
    
    		$cur = get_preferred_from_update_core();
    		if ( ! is_object( $cur ) )
    			$cur = new stdClass;
    
    		if ( ! isset( $cur->current ) )
    			$cur->current = '';
    
    		if ( ! isset( $cur->url ) )
    			$cur->url = '';
    
    		if ( ! isset( $cur->response ) )
    			$cur->response = '';
    
    		switch ( $cur->response ) {
    		case 'development' :
    			return sprintf( __( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), get_bloginfo( 'version', 'display' ), network_admin_url( 'update-core.php' ) );
    
    		case 'upgrade' :
    			return '<strong>'.sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) ).' - <a href="' . network_admin_url( 'update-core.php' ) . '">' . sprintf( __( 'Get Version %s' ), $cur->current ) . '</a></strong>';
    
    		case 'latest' :
    		default :
    			return sprintf( __( 'Version %s' ), get_bloginfo( 'version', 'display' ) );
    		}
    	}
    	add_filter( 'update_footer', 'smarter_update_footer', 9999);
    }
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文