我只是想用一个简单的回声在页脚信用中添加链接。链接显示在页脚中,但是当您单击它们时,您会看到一个 404 页面。这些页面确实存在,如果您手动输入它们或使用 html 链接,页面就会出现。我究竟做错了什么??
add_filter( 'genesis_footer_creds_text', 'custom_footer_creds_text' );
function custom_footer_creds_text() {
echo '<div class="creds"><p>';
echo 'Copyright © ';
echo date('Y');
echo ' · <a href="/privacy-policy/">Privacy Policy</a> · <a href="/about-us/">Terms of Use</a>';
echo '</p></div>';
}
输出:
<div class="creds">
<p>Copyright © 2013 · <a href="http://speakeasy.stagetheweb.com/privacy-policy/">Privacy Policy</a> · <a href="http://speakeasy.stagetheweb.com/terms-of-use/">Terms of Use</a>
</p></div>