In WordPress I want to get the most recent posts, however I want to display the first most recent post bigger in a different div. How do I seperate the first most recent post?
Thanks
You could modify the css to use the first-child
selector:
[POST-CLASS]:first-child {
font-size: 30px;
[...]
}
Or, install the 'display posts shortcode' plugin and use the schortcode [display-posts posts_per_page="1"]