Created
September 22, 2017 09:25
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 ($categories) { ?> | |
<div class="container"> | |
<div id="menu-gadget"> | |
<div id="menu-icon"><?php echo $text_category; ?></div> | |
<?php if ($categories) { echo $categories; } ?> | |
<ul class=”menu”> | |
<li><a href=”#”>Item 1</a></li> | |
<li><a href=”#”>Item 2</a></li> | |
<li><a href=”#”>Item 3</a></li> | |
…. | |
</ul> | |
</div> | |
</div> | |
<?php } ?> | |
<?php if ($categories) { ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment