Skip to content

Instantly share code, notes, and snippets.

@jbd91
Created November 5, 2019 17:00
Show Gist options
  • Save jbd91/8b09671c841a3c47c9c80c1f2f626426 to your computer and use it in GitHub Desktop.
Save jbd91/8b09671c841a3c47c9c80c1f2f626426 to your computer and use it in GitHub Desktop.
Register Widget Area
// Register
<?php
function language_select_widget_init() {
register_sidebar( array(
'name' => 'Language Select',
'id' => 'fdi_language_select',
) );
}
add_action( 'widgets_init', 'language_select_widget_init' );
?>
// Call
<?php
if (is_active_sidebar('fdi_language_select')) : ?>
<?php dynamic_sidebar('fdi_language_select'); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment