[random_post_top]

...

First Page

Click Here

Next Article

Leave a Reply

Your email address will not be published. Required fields are marked *.

*
*
You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

// Add shortcode to display random post function show_random_post_top() { $args = array( 'post_type' => 'post', 'posts_per_page' => 1, 'orderby' => 'rand', ); $random_query = new WP_Query($args); $output = ''; if ($random_query->have_posts()) { while ($random_query->have_posts()) { $random_query->the_post(); $output .= '
'; $output .= '

' . get_the_title() . '

'; $output .= '

' . get_the_excerpt() . '

'; $output .= '
'; } wp_reset_postdata(); } return $output; } add_shortcode('random_post_top', 'show_random_post_top'); Seraphinite AcceleratorOptimized by Seraphinite Accelerator
Turns on site high speed to be attractive for people and search engines.