PluginProbe
Independent Analytics – WordPress Analytics Plugin / 1.17.2
Independent Analytics – WordPress Analytics Plugin v1.17.2
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 All 120 releases
independent-analytics / templates / pdf / top-ten.php
top-ten.php
14 lines 545 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>