Links in footer section

时间:2016-03-31 作者:Domip

我目前正在尝试一个朋友的Wordpress页面。

他问我,该网站的页脚部分应包含与名称“AGB”和“Impressum”的链接,并引导到新的标签内容。

目前代码看起来像这样,但有两个问题:-两个单词的字体不同-我不知道在哪里添加链接地址

echo \'<div class="zerif-copyright-box"><a class="zerif-copyright" href="http://themeisle.com/themes/zerif-lite/"\'.$attribut_new_tab.\' rel="nofollow"></a>\'.__(\'AGB\',\'zerif-lite\').\'<a class="zerif-copyright" "\'.$attribut_new_tab.\' rel="nofollow"> Impressum</a></div>\';

echo \'</div>\';
希望你能帮助我:)

干杯,多米

1 个回复
SO网友:Mehul Gohil

我已经将您的代码改进为新版本,因为我发现您在锚定标记中使用了文本“AGB”

Updated Code

$html = \'\';
$html .= \'<div class="zerif-copyright-box">\';
$html .= \'<a class="zerif-copyright" href="http://themeisle.com/themes/zerif-lite/"\'.$attribut_new_tab.\' rel="nofollow">\'.__(\'AGB\',\'zerif-lite\').\'</a>\';
$html .= \'<a class="zerif-copyright" href="" "\'.$attribut_new_tab.\' rel="nofollow"> Impressum</a>\';
$html .= \'</div>\';

$html .= \'</div>\';
echo $html;
希望这有帮助!