shortcode himg
// Add Shortcode
function lic_himg( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'name' => '$terms = get_the_terms($post->ID, ‘nombre_CP’); foreach ($terms as $term) {echo ‘ ‘. $term->slug; }',
),
$atts,
''
);
<div id="all">
<div class="view view-tenth">
<img src="<?php the_post_thumbnail(); ?>" />
<div class="mask">
<h2> <?php the_title(); ?> </h2>
<p> <?php the_content(); ?> </p>
<a href="#" class="info">Leer más</a>
</div>
</div>
</div>
}
add_shortcode( 'himg', 'lic_himg' );