/** * Function to generate the top 10 popular posts page. * * @since 1.3 * @deprecated 2.2.0 * * @param int $daily Overall popular */ function tptn_manage($daily = 0) { $paged = isset($_GET['paged']) ? intval($_GET['paged']) : 0; $limit = isset($_GET['limit']) ? intval($_GET['limit']) : 0; $daily = isset($_GET['daily']) ? intval($_GET['daily']) : $daily; ?> <div class="wrap"> <h2> <?php if (!$daily) { _e('Popular Posts', 'tptn'); } else { _e('Daily Popular Posts', 'tptn'); } ?> </h2> <div id="poststuff"> <div id="post-body" class="metabox-holder columns-2"> <div id="post-body-content"> <?php echo tptn_pop_display($daily, $paged, $limit, false); ?> </div><!-- /post-body-content --> <div id="postbox-container-1" class="postbox-container"> <div id="side-sortables" class="meta-box-sortables ui-sortable"> <?php tptn_admin_side(); ?> </div><!-- /side-sortables --> </div><!-- /postbox-container-1 --> </div><!-- /post-body --> <br class="clear" /> </div><!-- /poststuff --> </div><!-- /wrap --> <?php }
/** * Widget for Daily Popular Posts. * * @since 1.2 */ function tptn_pop_daily_dashboard() { echo tptn_pop_display(true, 0, 10, true); }