Matthew Vaccaro

Professional Brogrammer

WordCamp 2011 Keynotes – Saturday

Saturday – Designers Track

Awesome Up Your Theme!

Custom post types!

<?php post_class(); ?> similar to body class. Use in post types such as <article> <aside> etc.

<?php get_template_part(); ?> => <?php get_template_part(‘content’); ?>’

get_post_format_link( get_post_format() );

<figure> tags!

<figure class="gallery-thumb">
<?php echo $image_img_tag; ?>
</figure>

while ( $recent_image_posts->have_posts() ) :
$recent_image_posts->the_post();
get_template_part( 'content', 'image' );
endwhile;

Remember, the_content() is still king.

Version Control for Designers

CSS3 Features

nth-of-type selector

Plugin Security

* Lunch

Responsive Web Design

Fluid media and re sizable webdesign that works on every device.

Media queries: @media and etc.

Chris Coyier from CSS-Tricks! – Pseudo Elements

:before and :after, etc.

Can’t use pseudo’s on non-content elements such as <img> and </br>

CSS-based icons using pseudo elements

 

Go Back...