Skip to content

Snippet: Add Xing to Staff Social Profiles

// Add new staff social profiles
add_filter( 'wpex_staff_social_array', function( $profiles ) {
	$profiles['xing'] = array (
		'key'        => 'xing',
		'meta'       => 'wpex_staff_xing',
		'label'      => 'Xing',
	);
	return $profiles;
}, 40 );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top