Ver Mensaje Individual
  #6 (permalink)  
Antiguo 21/09/2011, 09:36
Avatar de Nekko
Nekko
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 8 meses
Puntos: 656
Respuesta: Como hacer esto (importante)

Sería algo así
Código PHP:
Ver original
  1. <?php
  2. //for use in the loop, list 5 post titles related to first tag on current post
  3. $tags = wp_get_post_tags($post->ID);
  4. if ($tags) {
  5.   echo 'Related Posts';
  6.   $first_tag = $tags[0]->term_id;
  7.   $args=array(
  8.     'tag__in' => array($first_tag),
  9.     'post__not_in' => array($post->ID),
  10.     'showposts'=>5,
  11.     'caller_get_posts'=>1
  12.    );
  13.   $my_query = new WP_Query($args);
  14.   if( $my_query->have_posts() ) {
  15.     while ($my_query->have_posts()) : $my_query->the_post(); ?>
  16.       <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
  17.       <?php
  18.     endwhile;
  19.   }
  20.  
  21. } elseif (!$tags) { echo "no se encontraron noticias...."; }
  22. ?>
Para el apartado de los videos, deberás formular nuevamente un bucle que tome la categoría de los videos. Lee un poco esta sección para saber como armar tus consultas.
http://codex.wordpress.org/Template_Tags/query_posts
__________________
Taller para crear themes wordpress desde cero | Presupuestos para trabajos particulares vía MP