Related Posts Without Plugin And get_posts( $args ) ?
Is there a simple way to get related posts without having to use a plugin? I am preferably looking for something really simple like a couple lines at most
I currently use this to get random posts, but would like to get random related posts instead
<?php $args = array( 'orderby' => 'rand', 'numberposts' => 4 ); $posts2 = get_posts( $args ); foreach($posts2 as $post) { ?>
Any suggestions for a lite solution?
Is there a simple way to get related posts without having to use a plugin? I am preferably looking for something really simple like a couple lines at most
I currently use this to get random posts, but would like to get random related posts instead
<?php $args = array( 'orderby' => 'rand', 'numberposts' => 4 ); $posts2 = get_posts( $args ); foreach($posts2 as $post) { ?>
Any suggestions for a lite solution?
No comments:
Post a Comment