View Single Post
Old 04-16-2014, 11:15 PM   #1
areeshanoor2020
Registered User
 
Join Date: Apr 2014
Location: Pakistan
Posts: 198
Php code Customize

Hello Every One,
I have a problem with my website category and author.
these are Nofollow. I want to add categories and Author dofollow. Please customize below code. Thanks in Advance.

/* Nofollow to category links
/*-----------------------------------------------------------------------------------*/
add_filter( 'the_category', 'add_nofollow_cat' );
function add_nofollow_cat( $text ) {
$text = str_replace('rel="category tag"', 'rel="nofollow"', $text); return $text;
}

/*-----------------------------------------------------------------------------------*/
/* nofollow post author link
/*-----------------------------------------------------------------------------------*/
add_filter('the_author_posts_link', 'mts_nofollow_the_author_posts_link');
function mts_nofollow_the_author_posts_link ($link) {
return str_replace('<a href=', '<a rel="nofollow" href=',$link);
}
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
areeshanoor2020 is offline   Reply With Quote