I have a custom post type announcements
which obviously holds posts with weekly announcements.
In my theme’s header, I want to create a box which has the following semantics:
<div id="header-announcements">
<h3>Announcements</h3>
<ul>
<li><a href="post-permalink">Title</a></li>
<li><a href="post-permalink">Title</a></li>
<li><a href="post-permalink">Title</a></li>
<li><a href="post-permalink">Title</a></li>
<li><a href="post-permalink">Title</a></li>
</ul>
<div><a href="#">View More</a></div>
</div>
I know I want to use wp_query()
and I’ve found that I should do something similar to
ann-query = wp_query('post_type=announcements&posts_per_page=5');
I know I need to do a foreach, but I haven’t dived deep enough into wordpress to know what to do after the query.
Any help?
Thanks!
The following should work, but isn’t tested:
You will need to use a foreach loop since you this query give an array of objects, inside this loop you can use the properties of these objects for show the data. By example you can use: