[ 'title' => 'Skype', 'desc' => __('Skype login. You can use callto: or skype: prefix', 'mfn-opts'), 'icon' => 'icon-skype', ], 'whatsapp' => [ 'title' => 'WhatsApp', 'desc' => __('WhatsApp URL. You can use whatsapp: prefix', 'mfn-opts'), 'icon' => 'icon-whatsapp', ], 'facebook' => [ 'title' => 'Facebook', 'icon' => 'icon-facebook', ], 'twitter' => [ 'title' => 'X (Twitter)', 'icon' => 'icon-x-twitter', ], 'vimeo' => [ 'title' => 'Vimeo', 'icon' => 'icon-vimeo', ], 'youtube' => [ 'title' => 'YouTube', 'icon' => 'icon-play', ], 'flickr' => [ 'title' => 'Flickr', 'icon' => 'icon-flickr', ], 'linkedin' => [ 'title' => 'LinkedIn', 'icon' => 'icon-linkedin', ], 'pinterest' => [ 'title' => 'Pinterest', 'icon' => 'icon-pinterest', ], 'dribbble' => [ 'title' => 'Dribbble', 'icon' => 'icon-dribbble', ], 'instagram' => [ 'title' => 'Instagram', 'icon' => 'icon-instagram', ], 'tiktok' => [ 'title' => 'TikTok', 'icon' => 'icon-tiktok', ], 'snapchat' => [ 'title' => 'Snapchat', 'icon' => 'icon-snapchat', ], 'behance' => [ 'title' => 'Behance', 'icon' => 'icon-behance', ], 'tumblr' => [ 'title' => 'Tumblr', 'icon' => 'icon-tumblr', ], 'tripadvisor' => [ 'title' => 'Tripadvisor', 'icon' => 'icon-tripadvisor', ], 'vkontakte' => [ 'title' => 'VKontakte', 'icon' => 'icon-vkontakte', ], 'viadeo' => [ 'title' => 'Viadeo', 'icon' => 'icon-viadeo', ], 'xing' => [ 'title' => 'Xing', 'icon' => 'icon-xing', ], 'custom' => true, 'rss' => true, ]; // order if( ! empty( $this->value['order'] ) ){ $order = $this->value['order']; $order = explode( ',', $order ); $order = array_unique( array_merge( $order, array_keys( $socials ) ) ); } else { $order = array_keys( $socials ); } // output ----- echo '
'; echo $this->get_description(); // enqueue $this->enqueue(); } /** * Enqueue */ public function enqueue() { wp_enqueue_script( 'mfn-opts-field-social', MFN_OPTIONS_URI .'fields/social/field_social.js', array( 'jquery' ), MFN_THEME_VERSION, true ); } }