Replacing Social Media Icons
-
Is it possible to switch the social media icon section to a widget? I don’t need the social media links. But I would like to fill that empty space up there with a widget. I tried the following code to create the widget area there, but with no luck.
From functions.php:
// Add a widget area. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Header Widget Area', 'id' => 'extra-widget-area', 'description' => 'Extra widget area in the header', 'before_widget' => '<div class="widget my-extra-widget">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); } // Place the widget area after the header add_action ('__after_header', 'add_my_widget_area', 10); function add_my_widget_area() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area'); } }
This creates the widget area under widgets but nothing shows up on the frontend.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Replacing Social Media Icons’ is closed to new replies.