Last active
August 29, 2015 14:16
-
-
Save Dinamiko/7a2bf8e7a5f5838fcd7d to your computer and use it in GitHub Desktop.
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
/** | |
* [ic_categories] | |
* Muestra Categorías con imagen, título y descripción en cada categoría | |
*/ | |
function ic_categories_shortcode( $atts, $content = null ) { | |
ob_start(); | |
$taxonomies = array( 'category' ); | |
$terms = get_terms( $taxonomies ); | |
foreach ( $terms as $term ) { ?> | |
<div style="float:left;width:30%;margin-left:1.5%;margin-right:1.5%;text-align:center;"> | |
<a href="<?php echo get_term_link( $term );?>"><?php echo wp_get_attachment_image( ic_get_attachment_id( 'category', $term->term_id ) , 'full' );?></a> | |
<h3 style="margin-top:10px;margin-bottom:10px;"><a style="border:none;" href="<?php echo get_term_link( $term );?>"><?php echo $term->name;?></a></h3> | |
<p><?php echo $term->description;?><p> | |
</div> | |
<?php } | |
return ob_get_clean(); | |
} | |
add_shortcode( 'ic_categories', 'ic_categories_shortcode' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment