thewirelessguy / cornerstone

Cornerstone is a WordPress starter theme based on the Zurb Foundation Responsive Framework. Cornerstone aims to provide a lightweight starter theme that is responsive and SEO friendly that web designers can build great looking websites on.
GNU General Public License v2.0
154 stars 40 forks source link

Added show_admin_bar hook #1

Closed stillatmylinux closed 11 years ago

stillatmylinux commented 11 years ago

Want to show the admin bar for the desktop version, so I added a hook.

alana-mullen commented 11 years ago

I've added this to the theme though it needed a slight change to get it to work: if( wp_is_mobile() ) { return false; } else { return false; }

Changed to:

if( wp_is_mobile() ) { return false; } else { return true; }