Are you looking for a way to display posts outside the loop? While there’s probably a plugin for this, we have created a quick code snippet that you can use to add feed links to header in WordPress.
Instructions:
All you have to do is add this code to your theme’s index.php file:
<?php $feature_posts = get_posts('numberposts=10&orderby=post_name'); foreach($feature_posts as $post) : setup_postdata($post); ?> <? the_title(); ?> <? the_content(); ?> <?php endforeach; ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 27 best WordPress business themes for your website and how to create a custom user registration form in WordPress.
Should be there a wp_reset_postdata() after the foreach.
[…] This post was mentioned on Twitter by Violetta, WPSNIPP. WPSNIPP said: #wordpress Get posts outside loop http://bit.ly/aAi6Ju #tips #help #blog […]