milardovich

Corrección 2 the_loop tratamientos

Jun 3rd, 2014
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1.    
  2.  
  3.  
  4. function getTratamientos() {
  5.     query_posts('post_parent=51');
  6.     if ( have_posts() ) {
  7.         while ( have_posts() ) {
  8.             echo "<div>";
  9.             echo "<h3>".get_the_title()."</h3>";
  10.             echo "<p>".get_the_excerpt()."</p>";
  11.             echo "<a href=\"".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