Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ?></div>
- <?php
- global $options;
- foreach ($options as $value) {
- if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
- }
- ?>
- <div id="footer">
- <div class="foot">
- <ul>
- <li><h3>Most Played Games</h3>
- <?php if (function_exists('get_most_viewed')): ?>
- <ul>
- <?php get_most_viewed('post', 5); ?>
- </ul>
- <?php endif; ?>
- </li>
- </ul>
- </div>
- <div class="foot">
- <ul>
- <li><h3>Highest Rated Games</h3>
- <?php if (function_exists('get_highest_rated')): ?>
- <ul>
- <?php get_highest_rated('post', 0, 5); ?>
- </ul>
- <?php endif; ?>
- </li>
- </ul>
- </div>
- <div class="foot">
- <ul>
- <li><h3>Most Commented Games</h3>
- <ul>
- <?php echo popularPosts(5); ?>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- <div id="credits">
- <p><?php echo date('Y'); ?> © <a href="<?php echo get_option('home'); ?>/" class="tooltip" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
- - Designed by <a href="http://opaygames.com/" class="tooltip" title="Play Free Games Online at Opaygames">Play Free Games Online</a> in collaboration with <a href="http://www.topgamesfree.net/" class="tooltip" title="Top Games for Free">Top Games Free</a> and <a href="http://www.freetopgames.net/" class="tooltip" title="Free Top Games to Play">Free Top Games to Play</a></p>
- </div><?php echo stripslashes($wp_analytics); ?>
- <?php wp_footer(); ?>
- </body>
- </html><?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement