Skip to content

Instantly share code, notes, and snippets.

View bryankimani's full-sized avatar

Bryan Kimani bryankimani

View GitHub Profile
@bryankimani
bryankimani / tabbed_taxonomy.php
Created November 19, 2015 08:12 — forked from FernE97/tabbed_taxonomy.php
PHP: WordPress custom taxonomy/post query
<?php
$args = array(
'orderby' => 'ID'
);
$terms = get_terms( 'testimonial_category', $args );
?>
<!-- bootstrap tabs -->
<ul class="nav-tabs">
<?php