Skip to content

Instantly share code, notes, and snippets.

@nicmare
Created February 25, 2026 11:38
Show Gist options
  • Select an option

  • Save nicmare/aa2b908ddb9624402e1a3212271c93e0 to your computer and use it in GitHub Desktop.

Select an option

Save nicmare/aa2b908ddb9624402e1a3212271c93e0 to your computer and use it in GitHub Desktop.
remove additional Blocksy User Profile URLs
<?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