点击按钮
后,我需要在我的博客页面上重定向这是我的代码:
<div id="blog_button"> <a href="<?php echo site_url('Blog');?>"><input type="button" value="Blog"></a>
如何使用site_url()?如何访问我的博客页面
答案 0 :(得分:0)
http://codex.wordpress.org/Function_Reference/site_url
在site_url括号内,您可以添加要添加到链接的路径。例如,site_url()结果为http://www.example.com 而site_url(&#39;博客&#39;)的结果为http://www.example.com/blog
此外,您错过了代码中的结束div。
<div id="blog_button">
<a href="<?php echo site_url('Blog');?>"><input type="button" value="Blog"></a>
</div>