How can I hide social networks using $exclude in function get_listing_custom_fields()
How can I hide social networks using $exclude in function get_listing_custom_fields()? I've tried the following code, but no success.
function get_listing_custom_fields() {
global $post;
$exclude = array(
'type' => array( 'tax_input', 'file' ),
'name' => array( 'post_title', 'post_content', 'facebook', 'twitter', 'instagram', 'youtube', 'pinterest', 'googleplus', 'google-plus' ),
);