Guest User

Untitled

a guest
Nov 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <ol id="alltime">
  2.     <?php
  3.         $args = array(
  4.         'showposts' => 10,
  5.         'v_sortby'  => 'views',
  6.         'v_orderby' => 'DESC',
  7.         'v_timespan' => 'total'
  8.          );
  9.         query_posts($args);
  10.         while (have_posts()){
  11.         the_post();
  12.     ?>
  13.     <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
  14.         <?php the_titlesmall('', '', true, '43') ?>
  15.     </a></li>
  16.     <?php } wp_reset_query(); ?>
  17. </ol>
Add Comment
Please, Sign In to add comment