我正在制作WordPress博客,我必须经常更改网站网址以进行测试。有没有一种有效的方法可以将博客当前的主页URL动态插入帖子中?
E.g。我想做这样的事情:
[button link="[current_site_url]/about/" size="large"]About[/button]
答案 0 :(得分:1)
我认为<?php bloginfo('url'); ?>
就是你要找的......
此外,您可以使用
获取模板目录的URL <?php bloginfo('template_directory'); ?>
要查看bloginfo的其他参数,请参阅;
答案 1 :(得分:0)
以下是一些例子:
//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