![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/plugins/dt-the7-core/mods/team/includes/ |
<?php // File Security Check. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! function_exists( 'presscore_get_team_links_array' ) ) : /** * Return links list for team post meta box. * * @return array. */ function presscore_get_team_links_array() { $team_links = array( 'website' => array( 'desc' => _x( 'Personal blog / website', 'team link', 'dt-the7-core' ) ), 'mail' => array( 'desc' => _x( 'E-mail', 'team link', 'dt-the7-core' ) ), ); $common_links = presscore_get_social_icons_data(); if ( $common_links ) { foreach ( $common_links as $key=>$value ) { if ( isset($team_links[ $key ]) ) { continue; } $team_links[ $key ] = array( 'desc' => $value ); } } return $team_links; } endif;