Código PHP:
<?php global $data ?>
<div id="footer">
<div id="footerWidgets">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer')){ }else { ?>
<p class="noside"><?php _e('No hay Widgets en el Sidebar', 'lioit'); ?></p>
<?php } ?>
</div><!--End FooterWidgets-->
</div><!--End Footer-->
</div><!--End Container-->
<?php wp_footer();?>
</body>
</html>
<?php if ($detect->isMobile()==false) { ?> antes del div "footerWidgets" en dreamweaver me dice que esta bien pero cuando lo subo me sale error y no se ve correctamente el footer mi código es:
Código PHP:
<?php global $data ?>
<div id="footer">
<?php if ($detect->isMobile()==false) { ?> // esto aumento
<div id="footerWidgets">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer')){ }else { ?>
<p class="noside"><?php _e('No hay Widgets en el Sidebar', 'lioit'); ?></p>
<?php } ?>
</div><!--End FooterWidgets-->
<?php } ?>
</div><!--End Footer-->
</div><!--End Container-->
<?php wp_footer();?>
</body>
</html>