Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <ul id="noticias">
  2. <?php $contador = 0; global $post; $args = array( 'numberposts' => 3, 'cat' => 53, 'offset' => 0 ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?>
  3. <li>
  4. <?php if ( get_field('arquivo_download') ) { ?><a href="<?php echo get_field('arquivo_download'); ?>" target="_blank">
  5. <?php } if ( get_field('link_redirecionar') ) { ?><a href="<?php echo get_field('link_redirecionar'); ?>">
  6. <?php } else { ?><a href="<?php the_permalink() ?>"><?php } ?>
  7. <?php if ($contador == 0) {?>
  8. <figure><?php get_the_image( array( 'meta_key' => 'thumbnail', 'size' => 'full') ); ?></figure>
  9. <figcaption><?php the_title(); ?></figcaption>
  10. <?php } else {?>
  11. <?php the_title(); ?>
  12. <p style="font-size: 10px; line-height: 1.1rem;"><?php the_excerpt();?></p>
  13. <?php } $contador++;?>
  14. </a>
  15. </li>
  16. <?php endforeach; ?><?php wp_reset_query(); ?>
  17. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement