/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $showpages = 10; $thispage = 1; $login = new GADWidgetData(); $ga = new GALib($login->auth_token, $login->account_id, 60); $pages = $ga->pages_for_date_period($start, $end); echo "<ul>"; foreach($pages as $page) { $url = $page['value']; $title = $page['children']['value']; $array = array('(not set)', 'Okada Design Blog', 'Downloads | Okada Design Blog', 'Downloads « Okada Design Blog'); // You need to add any words which you don't want to show in the list // You need to add any words which you want to delete in the list echo '<li><a href="' . $url . '" rel="nofollow">' . $newtitle . '</a></li>'; $thispage++; } if($thispage > $showpages) break; } echo "</ul>"; ?>