How i can get the URL? 时间:2012-09-20 作者:baig772 如何在wordpress中获取基本URL?get_bloginfo(\'url\') 返回当前URL。我只需要基本URL,例如http://localhost/wpsite/ 没有任何?page_id=123 用它 2 个回复 最合适的回答,由SO网友:markratledge 整理而成 使用site\\u url<?php echo site_url(); ?>http://codex.wordpress.org/Function_Reference/site_url或get\\u site\\u url<?php echo get_site_url(); ?>http://codex.wordpress.org/Function_Reference/get_site_url甚至home\\u url<?php echo home_url(); ?>http://codex.wordpress.org/Function_Reference/home_url返回站点的主URL。Check the doc links for differences in available parameters. SO网友:Bendoh 您正在寻找site_url() 或home_url() 结束 文章导航