array( 'icon' => WPMUDEV_BLC_ASSETS_URL . 'images/social/facebook-dark-7x14.png', 'url' => 'https://www.facebook.com/wpmudev', ), 'instagram' => array( 'icon' => WPMUDEV_BLC_ASSETS_URL . 'images/social/instagram-dark-14x14.png', 'url' => 'https://www.instagram.com/wpmu_dev/', ), 'twitter' => array( 'icon' => WPMUDEV_BLC_ASSETS_URL . 'images/social/twitter-dark-13x11.png', 'url' => 'https://twitter.com/wpmudev/', ), ) ); } /** * Returns the social links for the email footer. */ public static function get_social_links() { $social_data = self::social_links(); $output = ''; if ( ! empty( $social_data ) ) { $output .= ''; $output .= '' . esc_html__( 'Follow us', 'broken-link-checker' ) . ''; foreach ( $social_data as $key => $data ) { $url = $data['url']; $icon = $data['icon']; $output .= " "; } $output .= ''; } return "{$output}
"; } }