函数描述
get_site_url() 模板标签获取指定站点的站点url,根据相应的协议返回 ‘siteurl’ 选项值,如果is_ssl()
为true,返回 ‘https’,否则为 ‘http’ ,如果 $scheme 为 ‘http’ 或 ‘https’, is_ssl() 将被覆盖。
Usage
<?php get_site_url( $blog_id, $path, $scheme ); ?>
默认使用方法
<?php get_site_url(); ?>
function parameter
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$blog_id | integer (math.) | clogged | 博客 ID | 当前博客ID |
$path | string (computer science) | clogged | 相对于站点URL的地址 | not have |
$scheme | string (computer science) | clogged | 指定给站点url的上下文方案,当前可用的有: ‘http’, ‘https’, ‘login’, ‘login_post’, ‘admin’ 或 ‘relative’. | null |
return value
(string) 添加有可选后缀路径的站点url
Filter
apply_filters( 'site_url', $url, $path, $orig_scheme, $blog_id );
usage example
<?php echo get_site_url(); ?>
返回完整的URL
http://www.example.com