home_url()(獲取首頁鏈接)
ome_url() 函數用來獲取 WordPress 的首頁鏈接。
用法
home_url( $path, $scheme );
參數
$path
(字符串)(可選)在首頁鏈接後邊追加的內容,是相對鏈接。
默認值:None
$scheme
(字符串)(可選)鏈接協議,只支持 “http”,“https” 和 “relative”。
默認值:null
返回值
(字符串)返回首頁 URL 加上 $path 參數。
例子
echo home_url();//輸出:http://www.example.com echo home_url( '/' );//輸出:http://www.example.com/ echo home_url( '/', 'https' );//輸出:https://www.example.com/ 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://www.example.com 或者 http://www.example.com/wordpress echo site_url( '/secrets/', 'https' );//輸出:https://www.example.com/secrets/ 或者 https://www.example.com/wordpress/secrets/
其它
此函數位於:wp-includes/link-template.php