我正在製作一個WordPress博客,我不得不經常更改網站URL進行測試。有沒有一種有效的方式來將博客的當前主頁URL動態插入到帖子中?在WordPress帖子中使用動態網站網址?
E.g.我想要做這樣的事情:
[button link="[current_site_url]/about/" size="large"]About[/button]
我正在製作一個WordPress博客,我不得不經常更改網站URL進行測試。有沒有一種有效的方式來將博客的當前主頁URL動態插入到帖子中?在WordPress帖子中使用動態網站網址?
E.g.我想要做這樣的事情:
[button link="[current_site_url]/about/" size="large"]About[/button]
我覺得<?php bloginfo('url'); ?>
是你找......
您也可以使用此網址到模板目錄與
<?php bloginfo('template_directory'); ?>
TO看博客的其他參數請參考;
下面是一些例子:
//All these functions return the blog's URL as configured in Settings
site_url(); // Does not display the URL
get_bloginfo('url'); // Does not display the URL
bloginfo('url'); // Always displays the URL
// Returns the root directory URL
// For http://example.com/myblog returns http://example.com
home_url(); // Does not display the URL