July 14, 2012
Instructor: John Hartley (@johnbhartley)
Slides: http://forknightdev.com/responsive/#1
"Responsive design is not some magical tool. You can't just pop it in and 'done, it works'." Responsive design requires planning.
July 14, 2012
Instructor: John Hartley (@johnbhartley)
Slides: http://forknightdev.com/responsive/#1
"Responsive design is not some magical tool. You can't just pop it in and 'done, it works'." Responsive design requires planning.
July 14, 2012
Instructor: Joe Querin (@joequerin)
Slides: http://www.slideshare.net/joecue/theme-development-essentials-columbus-oh-word-camp-2012
July 14, 2012
Instructor: Brian Layman (@BrianLayman)
Slides: http://www.slideshare.net/brianlayman/how-to-gitwiththeprogrambrianlaymanwordcampcolumbus2012
July 14, 2012
Instructor: John Dillick (@johndillick)
Slides: http://www.slideshare.net/johndillick/actions-filters
Semantic grid system: http://semantic.gs/
They'd love to see an analytics script to track how often people are resizing the browser
| # Attempt to load files from production if they're not in our local version (replace {SITE URL} with your production server) | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule (.*) http://{SITE URL}/wp-content/uploads/$1 | |
| </IfModule> |
| /** | |
| * Remove Contact Form 7's scripts and styles without having to add anything to wp-config.php (as described | |
| * in the CF7 docs) by using the wpcf7_enqueue_styles and wpcf7_enqueue_scripts actions that Takayuki was | |
| * nice enough to include in includes/controller.php | |
| * @link http://contactform7.com/loading-javascript-and-stylesheet-only-when-it-is-necessary/ | |
| */ | |
| add_action( 'wpcf7_enqueue_styles', function() { wp_deregister_style( 'contact-form-7' ); } ); | |
| add_action( 'wpcf7_enqueue_scripts', function() { wp_deregister_script( 'jquery-form' ); } ); |
| <?php | |
| wp_enqueue_style('ie7-fixes', get_bloginfo('template_url') . '/css/ie7.css', false, '', 'screen'); | |
| global $wp_styles; | |
| $wp_styles->add_data('ie7-fixes', 'conditional', 'lte IE 7'); | |
| ?> |
| <?php | |
| /** | |
| * Create a URL slug from a string | |
| * | |
| * @param string $str String to create slug from (str) | |
| * @param mixed $limit Limit the number of characters returned (optional) | |
| * @return string | |
| * @author Steve Grunwell | |
| */ | |
| function create_slug($str, $limit=64){ |