Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
mountainpassions
/
winter
/
wp-content
/
themes
/
peakie-2015
📤 Upload
📝 New File
📁 New Folder
Close
Editing: loop-news-offers.php
<?php $args=array( 'order'=> 'asc', 'orderby' => 'title', 'posts_per_page' => 3, 'category_name' => 'news-offers', ); ?> <!-- the loop --> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <div class="postsbycategory-box"> <?php the_post_thumbnail( 'img-postsbycategory'); ?> <div class="postsbycategory-overbox"> <h3><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3> <?php html5wp_excerpt( 'html5wp_index'); ?> <div class="read-more-container"> <div class="read-more"> <a href="<?php the_permalink(); ?>">Read More</a> </div> </div> </div> </div> <?php endwhile; ?> <?php else: ?> <!-- article --> <article> <h2><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h2> </article> <!-- /article --> <?php endif; ?>
Save
Cancel