Hi, I need to give rel-nofollow for all social profile in footer. But when I write < a href= “LINK” rel=”nofollow”>TEXT links are not working.
So, is it possible to give rel noffolow for social profile in footer and how I can do it? Thanks!
Hey Taras!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('#socket .social_bookmarks li a').attr('rel','nofollow');
});
<script>
<?php
}
add_action('wp_footer', 'add_custom_target');
Cheers!
Yigit