este es el codigo del footer.php
Código PHP:
<?php
/* Footer Template */
/* Fetch admin options. */
global $options;
foreach ($options as $value) {
if(isset($value['id']) && isset ($value['std']))
if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] );}
}
if ( is_active_sidebar( 'secondary-column-1' ) || is_active_sidebar( 'secondary-column-2' ) || is_active_sidebar( 'secondary-column-3' ) || is_active_sidebar( 'secondary-column-4' ) ) {
if ( is_page() ) {
$page_opts = get_post_meta( $posts[0]->ID, 'page_options', true );
$hide_secondary = isset($page_opts[ 'hide_secondary' ]) ? $page_opts[ 'hide_secondary' ] : '';
} // is page
elseif ( is_single() ) {
$post_opts = get_post_meta( $posts[0]->ID, 'post_options', true );
$hide_secondary = isset($post_opts[ 'hide_secondary' ]) ? $post_opts[ 'hide_secondary' ] : '';
} // is single
else {
$hide_secondary = $vlt_hide_secondary;
}
if ( $hide_secondary != 'true' ): ?>
<div class="secondary">
<div class="secondary_wrap clearfix">
<div class="one_fourth">
<?php
if ( is_active_sidebar( 'secondary-column-1' ) )
dynamic_sidebar( 'secondary-column-1' );
?>
</div><!-- .one_fourth -->
<div class="one_fourth">
<?php
if ( is_active_sidebar( 'secondary-column-2' ) )
dynamic_sidebar( 'secondary-column-2' );
?>
</div><!-- .one_fourth -->
<div class="one_fourth">
<?php
if ( is_active_sidebar( 'secondary-column-3' ) )
dynamic_sidebar( 'secondary-column-3' );
?>
</div><!-- .one_fourth -->
<div class="one_fourth last">
<?php
if ( is_active_sidebar( 'secondary-column-4' ) )
dynamic_sidebar( 'secondary-column-4' );
?>
</div><!-- .one_fourth_last -->
</div><!-- .secondary_wrap -->
</div><!-- .secondary -->
<?php endif; //show secondary
} // If widget areas are active
?>
<div class="footer">
<div class="footer_wrap clearfix">
<div class="notes_left"><?php echo stripslashes($vlt_footer_left); ?></div><!-- .notes_left -->
<div class="notes_right"><?php echo stripslashes($vlt_footer_right); ?></div><!-- .notes_right -->
</div><!-- .footer_wrap -->
</div><!-- .footer -->
</div><!-- .container -->
</div><!-- .container_shadow -->
<div class="top_btn"><a href="#" title="<?php _e( 'Scroll to top', 'volt' ); ?>"></a></div><!-- top_btn -->
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/smartphone.css" media="only screen and (max-width: 480px)">
<?php wp_footer(); ?>
</body>
</html>
en este dices que se debe agregar?
cual es el metodo.. yo no entiendo mucho por eso pido ayuda