Skip to content

Instantly share code, notes, and snippets.

View jeffvee's full-sized avatar

Jeff Vernon jeffvee

View GitHub Profile
@jeffvee
jeffvee / gist:03029119e9203c508262dbfbc2bec900
Last active September 21, 2023 22:43
Remove extra contact methods for Listify theme
<?php
// Remove infamously extra contact methods add by Listify theme used with WP Job Manager
add_filter('user_contactmethods', function($methods) {
// list of items to remove
$unset_items = ['pinterest', 'linkedin', 'github'];
foreach($unset_items as $item) {
unset($methods[$item]);
}