Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/04/2011, 13:03
Avatar de George1217
George1217
 
Fecha de Ingreso: junio-2009
Ubicación: Mexico
Mensajes: 164
Antigüedad: 15 años, 5 meses
Puntos: 8
Respuesta: ¿Que plugin de entradas relacionadas para wordpress recomiendan?

Te dejo el siguiente codigo por si en algun momento necesitas deshacerte del plugin



Código PHP:
Ver original
  1. <h3>Posts relacionados</h3>
  2.  
  3. <?php
  4.  
  5. $categories = get_the_category(get_the_ID() );
  6.  
  7. if ($categories) {
  8. $category_ids = array();
  9. foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
  10.  
  11. $args=array(
  12. 'category__in' => $category_ids,
  13. 'post__not_in' => array(get_the_ID()),
  14. 'showposts'=>15, // Number of related posts that will be shown.
  15. 'caller_get_posts'=>1
  16. );
  17.  
  18. $my_query = new wp_query($args);
  19.  
  20. if( $my_query->have_posts() ) {
  21. echo '<ul>';
  22. while ($my_query->have_posts()) {
  23. $my_query->the_post();
  24. ?>
  25. <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
  26. <?php
  27. }
  28. echo '</ul>';
  29. }
  30. }
  31. wp_reset_query();
  32. ?>
__________________
Yo Ho! Yo Ho!