Last active
September 29, 2017 07:25
-
-
Save bluvertigo/a2a757c734bdc09deaeb to your computer and use it in GitHub Desktop.
Creare un widget
This file contains 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
if ( function_exists('register_sidebar') ) { | |
register_sidebar(array( | |
'name' => 'Nome Per Esteso Widget', | |
'id' => "nome-widget", | |
'before_widget' => '', | |
'after_widget' => '', | |
'before_title' => '', | |
'after_title' => '' ) ); | |
} |
This file contains 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
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('nome-widget') ) : ?> | |
<?php endif; ?> |
This file contains 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
<?php if ( is_active_sidebar( 'nome-widget' ) ) { ?> | |
<ul id="sidebar"> | |
<?php dynamic_sidebar( 'nome-widget' ); ?> | |
</ul> | |
<?php } ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment