Created
February 25, 2026 11:38
-
-
Save nicmare/aa2b908ddb9624402e1a3212271c93e0 to your computer and use it in GitHub Desktop.
remove additional Blocksy User Profile URLs
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 | |
| function remove_contactmethods($cms) { | |
| foreach($cms as $cm_key => $cm_label){ | |
| if(in_array($cm_key,["facebook","twitter","linkedin","instagram","vimeo","pinterest","tiktok","dribbble","behance","xing","odnoklassniki","vkontakte","youtube","github","soundcloud","spotify","medium","tumblr","mastodon","wordpress","mastodon"])){ | |
| unset($cms[$cm_key]); | |
| } | |
| } | |
| return $cms; | |
| } | |
| add_filter('user_contactmethods','remove_contactmethods',20,1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment