Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if(have_posts()) : ?>
- <?php while(have_posts()) : the_post(); ?>
- <?php if(is_attachment() || has_post_thumbnail() ) { ?>
- <div class="row">
- <div class="col s12 m7">
- <div class="card">
- <div class="card-image">
- <img src="<?php the_post_thumbnail_url('medium'); ?>">
- <span class="card-title"><?php the_title(); ?></span>
- </div>
- <div class="card-content"><a style="color:black;" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta( 'display_name' ); ?></a>
- <p><?php the_content(); ?></p>
- </div>
- <div class="card-action">
- <?php if(have_posts()) : ?>
- <?php while(have_posts()) : the_post(); ?>
- <?php if(is_attachment() || has_post_thumbnail() ) { ?>
- <div class="row">
- <div class="col s12 m7">
- <div class="card">
- <div class="card-image">
- <img src="<?php the_post_thumbnail_url('medium'); ?>">
- <span class="card-title"><?php the_title(); ?></span>
- </div>
- <div class="card-content"><a style="color:black;" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author_meta( 'display_name' ); ?></a>
- <p><?php the_content(); ?></p>
- </div>
- <div class="card-action">
- <a href="<?php the_permalink(); ?>">Leggi di più</a>
- </div>
- </div>
- </div>
- </div>
- <?php } ?>
- <?php endwhile; ?>
- <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment