-1
我想將nofollow添加到我的活動日曆中的Venue鏈接。見樣本頁https://www.hawaiidiscount.com/events/event/kona-brewers-festival/在Wordpress中使用add_filter更改指向nofollow的鏈接
我使用的功能如下。我收到錯誤時,我把它放在我的functions.php
我將不勝感激任何提示,並幫助如何解決這個問題。
add_filter('tribe_get_event_website_link', 'ip_nofollow_link', 10, 2);
function ip_nofollow_link($html) {
return str_replace('<a href="%s" target="%s">%s</a>,' '<a href="%s" target="%s">%s</a> rel="nofollow"', $html);
}