简介WordPress中用于获取首页和站点链接的PHP函数

网络编程 2021-07-05 09:09www.168986.cn编程入门
这篇文章主要介绍了WordPress中用于获取首页和站点链接的PHP函数,分别是home_url()和site_url()需要的朋友可以参考下

home_url()(获取首页链接)
ome_url() 函数用来获取 WordPress 的首页链接。

用法

home_url( $path, $scheme );

参数

$path

(字符串)(可选)在首页链接后边追加的内容,是相对链接。

默认值None

$scheme

(字符串)(可选)链接协议,只支持 “http”,“https” 和 “relative”。

默认值null

返回值

(字符串)返回首页 URL 加上 $path 参数。

例子

echo home_url();//输出http://.example.
echo home_url( '/' );//输出http://.example./
echo home_url( '/', 'https' );//输出https://.example./
echo home_url( 'example', 'relative' );//输出/example

其它
此函数位于wp-includes/link-template.php


site_url()(获取站点链接)
site_url() 函数用来获取 WordPress 的站点链接。

用法

site_url( $path, $scheme );

参数

$path

(字符串)(可选)在链接后追加的内容。

默认值None

$scheme

(字符串)(可选)链接协议,只允许 “http”、“https”、“login”、“admin” 和 “relative”。

默认值null

返回值

(字符串)返回站点链接加上 $path 参数。

例子

echo site_url();//输出http://.example. 或者 http://.example./wordpress
echo site_url( '/secrets/', 'https' );//输出https://.example./secrets/ 或者 https://.example./wordpress/secrets/

其它

此函数位于wp-includes/link-template.php


Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by