Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save babelpuntocl/4b024c9d3bce00bd291aefa4460413e2 to your computer and use it in GitHub Desktop.
Save babelpuntocl/4b024c9d3bce00bd291aefa4460413e2 to your computer and use it in GitHub Desktop.
Listar nombre y descripcion categoria custom post type
<?php $args = array('type' => 'rentals', 'taxonomy' => 'rental-categories');
$categories = get_categories($args);
foreach($categories as $category) {
echo'
<div class="fg12 rentals">
<h2> '. $category->name . '</h2>
<div class="info">
<p>'. $category->description . '</p>
<a class="button" href="#">
Learn More &rarr;
</a>
</div>
</div>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment