Created
July 13, 2017 09:09
-
-
Save bigdigital/769ef6c6dfca43a3488e8543b81f9d64 to your computer and use it in GitHub Desktop.
Remove Nofollow Link in The7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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