Actualizar pie de página

  • Autor Autor seoeditor
  • Fecha de inicio Fecha de inicio
S

seoeditor

Gamma
Este post ha sido actualizado.
 
Última edición:
mmm creo que seria
PHP:
</div> <? 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>2010 &copy; <a href=\"<?php echo get_option(\'home\'); ?>/\" title=\"<?php bloginfo(\'name\'); ?>\"><?php bloginfo(\'name\'); ?></a> Designed by <a href=\"http://freegames.org/\" title=\"Free Games\">Free Games</a></p> </div><? echo stripslashes($wp_analytics); ?> <?php wp_footer(); ?> </body> </html>
 
Dime que herramienta usaste ?

Saludos.

mmm creo que seria
PHP:
</div> <? 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>2010 &copy; <a href=\"<?php echo get_option(\'home\'); ?>/\" title=\"<?php bloginfo(\'name\'); ?>\"><?php bloginfo(\'name\'); ?></a> Designed by <a href=\"http://freegames.org/\" title=\"Free Games\">Free Games</a></p> </div><? echo stripslashes($wp_analytics); ?> <?php wp_footer(); ?> </body> </html>
 
PHP:
</div>
<div id="footer">
        <div class="foot">
                <ul>
                <li><h3>Most Played Games</h3>
                         
                </li>
                </ul>
        </div>
        <div class="foot">
                <ul>
                <li><h3>Highest Rated Games</h3>
                         
                </li>
                </ul>
        </div>
        <div class="foot">
                <ul>
                <li><h3>Most Commented Games</h3>
    <ul>
 
Atrás
Arriba