Created
July 15, 2014 08:19
-
-
Save sagarjadhav/8ddb2b910811f54738af to your computer and use it in GitHub Desktop.
Remove small Gravtars from bbPress Forums
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
<?php | |
/* Remove small Gravtars from bbPress Forums */ | |
function rtp_remove_bbp_gravatar_null() { | |
return null; | |
} | |
function rtp_remove_bbp_gravatar($author_link, $args) { | |
return preg_replace('/<a.*<img.*> /iU', '', $author_link); | |
} | |
function rtp_remove_bbp_remove_link($author_link, $args) { | |
return preg_replace('/<a.*><\/a>/iU', '', $author_link); | |
} | |
add_filter('bbp_get_author_link', 'rtp_remove_bbp_gravatar', '', 2); | |
add_filter('bbp_get_topic_author_display_name', 'rtp_remove_bbp_gravatar', '', 2); | |
add_filter('bbp_get_reply_author_link', 'rtp_remove_bbp_gravatar', '', 2); | |
add_filter('bbp_get_topic_author_avatar', 'rtp_remove_bbp_gravatar_null'); | |
add_filter('bbp_get_topic_author_link', 'rtp_remove_bbp_remove_link', '', 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment