我想插入nofollow “a”中的值;由“提供动力”;如果页面与主页不同,请链接。
所以我写了这个:
function prefix_poweredby() {
if ( is_front_page() ) {
$html = \'<a href="https://example.com" target="_blank">link</a>\';
echo $html;
} else {
$html = \'<a href="https://example.com" rel="nofollow" target="_blank">link</a>\';
echo $html;
}
}
add_action(\'wp_footer\', \'prefix_poweredby\');
它工作得很好,但我很确定还有其他更优雅的方法来编写此函数,如果您能与我分享,我将不胜感激。