>

La Meta Infor

Las Taxonomias

Los Metaboxes

Las Tags

ID); if ($categories) { $category_ids = array(); foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id; $args=array( 'category__in' => $category_ids, 'post__not_in' => array($post->ID), 'showposts'=>5, // Number of related posts that will be shown. ); $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo '

Related Posts

    '; while ($my_query->have_posts()) { $my_query->the_post(); ?>
  • '; } } wp_reset_postdata(); ?>