Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Created July 13, 2017 09:09
Show Gist options
  • Save bigdigital/769ef6c6dfca43a3488e8543b81f9d64 to your computer and use it in GitHub Desktop.
Save bigdigital/769ef6c6dfca43a3488e8543b81f9d64 to your computer and use it in GitHub Desktop.
Remove Nofollow Link in The7
function my_filter_presscore_post_details_link( $output ){
$output = str_replace( 'rel="nofollow"', '' ,$output);
return $output;
}
add_filter( 'presscore_post_details_link', 'my_filter_presscore_post_details_link' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment