milardovich

Corregido - tratamientos the_loop

Jun 3rd, 2014
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    
  2.  
  3.  
  4. function getTratamientos() {
  5.     $tratamientos = new WP_Query( 'post_parent=51');
  6.     if ( $tratamientos->have_posts() ) {
  7.         while ( $tratamientos->have_posts() ) {
  8.             echo "<div>";
  9.             echo "<h3>".$tratamientos->get_the_title()."</h3>";
  10.             echo "<p>".$tratamientos->get_the_excerpt()."</p>";
  11.             echo "<a href=\"".$tratamientos->get_the_permalink()."\">[Seguir leyendo]</a>";
  12.             echo "</div>";
  13.         }
  14.     }
  15. }
  16. add_shortcode('tratamientos','getTratamientos');
Advertisement
Add Comment
Please, Sign In to add comment