Wordpress: Fixing the broken links from Jetpack top stats
I use the upgraded awesome plugin Jetpack by Wordpress.com to show the ‘Top Posts’ is the sidebar. I recently noticed that the links for these post were broken, even though I wasn’t doing anything wrong at all. I queried the plugin for top 5 posts using: $top_posts = stats_get_csv('postviews', 'days=-1&limit=6&summarize'); echo ''; foreach ( $top_posts as $p ) { if($p['post_id']) echo ''. $p['post_title'] .' - '. $p['views'] . ' views'; } echo '';...