Aug 06 2008
Hardcoding Firestats 5 Most Popular Posts into your Sidebar
To display your 5 most popular posts, simply copy and paste this code into your sidebar.php of your chosen theme. Make sure Firestats is enabled in your plug-in section.
This is mainly for hardcoding themes into Wordpress MU, since there is an existing widget that does the same job in 5 seconds flat.
<?php if ( function_exists(’fs_get_firestats_path’) ) { echo ‘<li>’; echo ‘<h2>5 Most Popular Posts</h2>’; $FS_PATH = fs_get_firestats_path(); require_once($FS_PATH.’/php/html-utils.php’); $days_ago = 30; $num_to_show = ‘5′; $generator = create_function(”,”return fs_get_popular_pages_tree($num_to_show, $days_ago, FS_URL_TYPE_POST,false, null);”); echo fs_get_cached_data(’cached_firestats_popular_pages’, $generator, 3600); } ?>
