News Featured Images
-
I am working on a section to list news similar to this website, it show picture, date, title, description. I’m having some issues with the featured image code, is there a specific code to show the image?
https://www.enterpriseflorida.com/why-florida/infrastructure/
Here is my code:
<div class=”news_item”>
<?php $posts = get_posts(‘numberposts=2&order=DESC&orderby=post_title&category_name=news’);foreach ($posts as $post) : start_wp(); ?><?php toolbox_posted_on(); ?>
<h4>” title=” <?php the_title(); ?>”>
<?php the_title() ; ?>
</h4>
<?php endforeach; ?>
</div>
- The topic ‘News Featured Images’ is closed to new replies.