Adding widget area in Vantage them
-
Programming NOOB, looking for a way to add widget area to Vantage theme.
I created a child theme,
creaded CSS and Functions.php and copied Header.php
Added to functions.php
<?php // Opening PHP tag - nothing should be before this, not even whitespace // Custom Function to Include function vantage_widgets_init() { register_sidebar( array( 'name' => __( 'Before Slider', 'vantage' ), 'id' => 'Before-Slider', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );
Now according to documentation I should add “<?php dynamic_sidebar( ‘Before-Slider’);?>” to the header (copied to child)
<?php /** * The Header for our theme. * * Displays all of the <head> section and everything up till <div id="main"> * * @package vantage * @since vantage 1.0 * @license GPL 2.0 */ ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.ico" /> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta http-equiv="X-UA-Compatible" content="IE=10" /> <title><?php wp_title( '|', true, 'right' ); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php do_action('vantage_before_page_wrapper') ?> <div id="page-wrapper"> <?php do_action( 'vantage_before_masthead' ); ?> <?php get_template_part( 'parts/masthead', apply_filters( 'vantage_masthead_type', siteorigin_setting( 'layout_masthead' ) ) ); ?> <?php do_action( 'vantage_after_masthead' ); ?> <?php dynamic_sidebar( 'Before-Slider');?> <?php vantage_render_slider() ?> <?php do_action( 'vantage_before_main_container' ); ?> <div id="main" class="site-main"> <div class="full-container"> <?php do_action( 'vantage_main_top' ); ?>
As you probably guessed it ain’t working. Any help out there?
- The topic ‘Adding widget area in Vantage them’ is closed to new replies.