Guest User

Untitled

a guest
Jan 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. $las_ofertas = new WP_Query(array(
  2. 'post_type' => 'oferta',
  3. 'posts_per_page' => 5
  4. ));
  5.  
  6. $ciudad = get_post_meta($post->ID, 'oferta_ciudad', true);
  7. $fecha = get_post_meta($post->ID, 'oferta_date', true);
  8. $descripcion = get_post_meta($post->ID, 'oferta_descripcion', true);
  9.  
  10. if ( $las_ofertas->have_posts() ) {
  11. while ( $las_ofertas->have_posts() ) : $las_ofertas->the_post(); ?>
  12.  
  13. <article class="al70">
  14. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  15. <?php if( $ciudad ) { ?> <p><?php echo ($ciudad); ?></p>
  16. <?php } else {?> <p>La oferta no especifica la ciudad en la que desarrollará el trabajo.</p> <?php } ?>
  17.  
  18. <?php if( $fecha ) { ?> <p><?php echo ($fecha); ?></p>
  19. <?php } else {?> <p>La oferta no especifica la fecha de inicio.</p> <?php } ?>
  20.  
  21. <?php if( $descripcion ) { ?>
  22. <h3>Descripción:</h3>
  23. <p><?php echo ($descripcion); ?></p>
  24. <?php } else {?> <p>La empresa no ofrece detalles del trabajo.</p> <?php } ?>
  25.  
  26. <p><a href="<?php the_permalink(); ?>" class="btn"><?php _e('Ver oferta...') ?></a></p>
  27.  
  28. </article> <!-- article -->
  29.  
  30. <?php endwhile;
  31. } else { ?>
  32. <p>No existen ofertas para mostrar.</p>
  33. <?php } ?>
  34. <?php wp_reset_postdata();
Add Comment
Please, Sign In to add comment