parent
1878ab7866
commit
8b9b2afe94
2 changed files with 14 additions and 1 deletions
|
@ -1,4 +1,15 @@
|
|||
<div class="navbar-area">
|
||||
<?php
|
||||
$categories = get_categories( array(
|
||||
'orderby' => 'name',
|
||||
'order' => 'ASC'
|
||||
) );
|
||||
|
||||
foreach( $categories as $category ) {
|
||||
if ($category->slug == "blog") {
|
||||
echo '<a class="btn btn-navbar" href="' . get_category_link($category->term_id) . '">' . $category->name . '</a>';
|
||||
}
|
||||
}?>
|
||||
<!-- <a href="/blog.html" class="btn btn-navbar">Blog</a> -->
|
||||
<!-- <a href="/crea.html" class="btn btn-navbar">Romans</a> -->
|
||||
<!-- <a href="/apropos.html" class="btn btn-navbar">A propos</a> -->
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
) );
|
||||
|
||||
foreach( $categories as $category ) {
|
||||
echo '<a class="menu-element" href="' . get_category_link($category->term_id) . '">' . $category->name . '<span class="menu-label label-secondary">'. $category->count . '</span></a>';
|
||||
if ($category->slug != "blog") {
|
||||
echo '<a class="menu-element" href="' . get_category_link($category->term_id) . '">' . $category->name . '<span class="menu-label label-secondary">'. $category->count . '</span></a>';
|
||||
}
|
||||
}?>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in a new issue