Last active
September 10, 2018 18:13
-
-
Save landbryo/c39f6dc37c9047d44878a3434563e7bf to your computer and use it in GitHub Desktop.
Removes WordPress Enfold theme backlink without having to modify the footer.php file.
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
////////////////////////////// | |
// REMOVE ENFOLD POWERED BY // | |
////////////////////////////// | |
function remove_backlink($link) { | |
return ''; | |
} | |
add_filter('kriesi_backlink', 'remove_backlink', 10, 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment