Advertisement
WordpressDecoder

Darko22

Nov 20th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.81 KB | None | 0 0
  1. ?></div>  
  2. <?php  
  3. global $options;  
  4. foreach ($options as $value) {  
  5.     if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }  
  6. }  
  7. ?>  
  8. <div id="footer">  
  9.     <div class="foot">  
  10.         <ul>  
  11.         <li><h3>Most Played Games</h3>  
  12.             <?php if (function_exists('get_most_viewed')): ?>  
  13.             <ul>  
  14.             <?php get_most_viewed('post', 5); ?>  
  15.  
  16.             </ul>  
  17.             <?php endif; ?>    
  18.         </li>  
  19.         </ul>  
  20.     </div>  
  21.     <div class="foot">  
  22.         <ul>  
  23.         <li><h3>Highest Rated Games</h3>  
  24.             <?php if (function_exists('get_highest_rated')): ?>  
  25.  
  26.                 <ul>  
  27.                 <?php get_highest_rated('post', 0, 5); ?>  
  28.                 </ul>  
  29.             <?php endif; ?>    
  30.         </li>  
  31.         </ul>  
  32.     </div>  
  33.     <div class="foot">  
  34.         <ul>  
  35.  
  36.         <li><h3>Most Commented Games</h3>  
  37.     <ul>  
  38.         <?php echo popularPosts(5); ?>  
  39.     </ul>  
  40.  
  41.         </li>  
  42.         </ul>  
  43.     </div>  
  44. </div>  
  45.  
  46. <div id="credits">  
  47.     <p><?php echo date('Y'); ?> &copy; <a href="<?php echo get_option('home'); ?>/" class="tooltip" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>    
  48.   - 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>  
  49. </div><?php echo stripslashes($wp_analytics); ?>  
  50.  
  51. <?php wp_footer(); ?>  
  52. </body>  
  53. </html><?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement