_config_wp_home

函数
_config_wp_home ( $url = '' )
Access
Private
参数
  • (string) $url URL for the home location.
    Required:
    Default: (empty)
返回值
  • (string) Homepage location.
相关
  • WP_HOME
定义位置
相关方法
_config_wp_siteurlis_homewp_shortlink_wp_head
引入
2.2.0
弃用
-

config_wp_home: 这个函数用于配置当前网站的主页URL。它接受一个URL作为其参数,并更新网站的主页URL选项。

检索WordPress主页的URL。

如果名为’WP_HOME’的常量存在,那么它将被使用并被该函数返回。这可以用来对抗你本地开发环境中的重定向。

function _config_wp_home( $url = '' ) {
	if ( defined( 'WP_HOME' ) ) {
		return untrailingslashit( WP_HOME );
	}
	return $url;
}

常见问题

FAQs
查看更多 >