top-ten.php
14 lines
| 1 | <div class="top-ten"> |
| 2 | <div class="heading"> |
| 3 | <div class="title-med"><?php printf(esc_html__('Top 10 %s', 'iawp'), $title); ?></div> |
| 4 | <div class="views-heading"><?php esc_html_e('Views', 'iawp'); ?></div> |
| 5 | </div> |
| 6 | <ol> |
| 7 | <?php for ($i = 0; $i < count($items); $i++) : ?> |
| 8 | <li> |
| 9 | <span class="title"><?php esc_html_e($items[$i]['title']) ?></span> |
| 10 | <span class="views"><?php echo absint($items[$i]['views']) ?></span> |
| 11 | </li> |
| 12 | <?php endfor; ?> |
| 13 | </ol> |
| 14 | </div> |