PHP Wordpress - Get Random Post

<?php list( $post ) = get_posts( array ( 'post_type' => array ( 'post' ), 'post_status' => array ( 'publish' ), 'posts_per_page' => '1', 'orderby' => 'rand', ) ); if ( $post ) { //... }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.