Use Dashicons to Create a Social Media Menu in WordPress

There are plenty of plugins that allow you to add social media icons to your WordPress site. However, I always advocate avoiding plugins in favor of rolling out your own solution. Don’t fall into the trap of installing a plugin when you can develop your own solution using the WordPress API.

In this tutorial we are going to use Dashicons to create a custom social media menu.

For this tutorial, I created a child theme of twentyseventeen and named the theme example-theme. However, the steps below can easily be applied to your custom of templated theme. Below is the final result.

social media menu using dashiconsClick to expand

1. Load Dashicons on the Front End

  1. Add wp_enqueue_style( 'dashicons' ); to your theme’s functions.php file.
  
    add_action("wp_enqueue_scripts", "twentyseventeen_parent_theme_enqueue_styles");
    
    /**
      * Enqueue scripts and styles.
      */
    function twentyseventeen_parent_theme_enqueue_styles()
    {
      wp_enqueue_style(
        "twentyseventeen-style",
        get_template_directory_uri() . "/style.css"
      );
      wp_enqueue_style(
        "example-theme-style",
        get_stylesheet_directory_uri() . "/style.css",
        ["twentyseventeen-style"]
      );
      // load dashicons to the front end
      wp_enqueue_style("dashicons");
    }
  

2. Add a New Social Media Menu to Your Theme

  1. Register a new menu by adding the following to your theme’s functions.php file.
// create a social media menu
add_action("after_setup_theme", "register_social_media_menu");

function register_social_media_menu()
{
  register_nav_menu("social_media", __("Socia Media Menu", "example-theme"));
}

3. Add a Social Media Menu in the WordPress Backend

  1. Login to WordPress and add a new menu by navigating to /wp-admin/nav-menus.php?action=edit&menu=0
  2. Name the menu anything you’d like. In my case, I named the menu Social Media Menu

    add social media menu to wordpressClick to expand

4. Use Dashicon Markup in the Newly Created Menu

  1. Navigate to the WordPress Dashicons page and search for the desired icon. In this example, I will use Facebook.
  2. Click Copy HTML to generate the correct HTML. In my case I get <span class="dashicons dashicons-facebook"></span>

    generate dashicon markupClick to expand

  3. Navigate back to the menu you create in step 3.1
  4. Add a Custom Link to the menu, ensuring you use <span class="dashicons dashicons-facebook"></span> as the Link Text

    • To be accessible, add <span class="screen-reader-text">Facebook</span>. It should now render <span class="dashicons dashicons-facebook"><span class="screen-reader-text">Facebook</span></span>.

    add dashicon markup to custom menu link.pngClick to expand

  5. Click Save Menu

5. Display the Menu in Your Theme

Display the menu in your theme as you see fit. In my case, I chose to display the menu in a Widget