Title: adding additional social media
Last modified: August 21, 2016

---

# adding additional social media

 *  Resolved [Shukitty](https://wordpress.org/support/users/shukitty/)
 * (@shukitty)
 * [12 years ago](https://wordpress.org/support/topic/adding-additional-social-media/)
 * Is there a way to add additional social media? I want to add Vine to the social
   media icons. I looked it up in font awesome, there is a Vine icon. I tried adding
   vine to the array in the social media function, in the functions file. It didn’t
   bring it up in the theme options page. Is there somewhere else I can add it?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Nile Flores](https://wordpress.org/support/users/blondishnet/)
 * (@blondishnet)
 * [12 years ago](https://wordpress.org/support/topic/adding-additional-social-media/#post-5000897)
 * So, you added something like:
 *     ```
       array( 'url' => of_get_option( 'social_vine', '' ), 'icon' => 'fa-vine', 'title' => esc_html__( 'Follow me on Vine', 'quark' ) ),
       ```
   
 * In your functions.php, before the last one, which is the RSS?
 * Also, your options.php needs to have a corresponding area for vine too.
 * Enter this before the options array for the RSS in your options.php
 *     ```
       $options[] = array(
       		'name' => esc_html__( 'Vine', 'quark' ),
       		'desc' => esc_html__( 'Enter your Vine URL.', 'quark' ),
       		'id' => 'social_vine',
       		'std' => '',
       		'type' => 'text' );
       ```
   
 * Just in case, make sure your font awesome files (CSS and fonts) are updated to
   the 4.1 which was when Vine was added – [http://fortawesome.github.io/Font-Awesome/whats-new/](http://fortawesome.github.io/Font-Awesome/whats-new/)
 *  Thread Starter [Shukitty](https://wordpress.org/support/users/shukitty/)
 * (@shukitty)
 * [12 years ago](https://wordpress.org/support/topic/adding-additional-social-media/#post-5000943)
 * That worked! I missed the options page. I did have to update the font awesome
   too, since the icon didn’t show up after I added it. Thank you for your help!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘adding additional social media’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/quark/1.4.1/screenshot.png)
 * Quark
 * [Support Threads](https://wordpress.org/support/theme/quark/)
 * [Active Topics](https://wordpress.org/support/theme/quark/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/quark/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/quark/reviews/)

## Tags

 * [FontAwesome](https://wordpress.org/support/topic-tag/fontawesome/)
 * [quark theme](https://wordpress.org/support/topic-tag/quark-theme/)

 * 2 replies
 * 2 participants
 * Last reply from: [Shukitty](https://wordpress.org/support/users/shukitty/)
 * Last activity: [12 years ago](https://wordpress.org/support/topic/adding-additional-social-media/#post-5000943)
 * Status: resolved