Created
March 20, 2013 08:56
-
-
Save ptahdunbar/5203256 to your computer and use it in GitHub Desktop.
Widgets and Widget Areas
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 | |
// functions.php | |
register_sidebar(array( | |
'id' => 'custom', | |
'name' => 'Custom Widget Area', | |
)); | |
<div class="widget-area widget-area-custom"> | |
if (!dynamic_sidebar('custom')) { | |
echo 'Nothing to show.'; | |
} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment