0

我正在制作一个 WordPress 博客,我必须经常更改站点 URL 以进行测试。有没有一种有效的方法将博客的当前主页 URL 动态插入到帖子中?

例如,我想做这样的事情:

[button link="[current_site_url]/about/" size="large"]About[/button] 
4

2 回答 2

1

我想<?php bloginfo('url'); ?>这就是你要找的...

您也可以使用 url 获取模板目录

<?php bloginfo('template_directory'); ?>

要查看 bloginfo 的其他参数,请参考;

http://codex.wordpress.org/Function_Reference/bloginfo

于 2012-11-24T02:32:29.893 回答
0

Here are some examples:

//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
于 2012-11-24T06:08:36.133 回答