Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <div class="SongOfTheWeek">
- if (is_front_page()) {
- <?php
- // Feed PHP with the information you want to show, in our case: a certain category = use of the id, number = amount of posts to show
- $catquery = new WP_Query( 'cat=77&posts_per_page=1' );
- // Let WordPress run the loop for you
- while($catquery->have_posts()) : $catquery->the_post();
- ?>
- <!--Inside the loop, you can use the WP template tags to show the stuff you want, like author, exerpt of the post etc. -->
- <?php the_post_thumbnail(); ?>
- <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
- <?php endwhile; ?>
- <?php // Don't forget to reset the query (clean the data after it is finished) ?>
- <?php wp_reset_query(); ?>
- }
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement