Created
November 5, 2019 17:00
-
-
Save jbd91/8b09671c841a3c47c9c80c1f2f626426 to your computer and use it in GitHub Desktop.
Register Widget Area
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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