See just how NOT excited they are in this video.
This past weekend we went to the Dancing Moose Yurt near Gould, CO. The snow was kinda crummy, but with a good bit of work, we built quite the sledding run.
TO DO List
I was looking at “Christmas Beers” tonight and ran across Corsendonk Christmas. Hope Daveco has it because the description sounds fantastic!
The most Christmas-y of Christmas ales, this is the archetypal beer—just the right amount of spices, Belgian candi sugar and caramel malt. This is what we mean when we say “Christmas beer.”
http://beeradvocate.com/beer/profile/41/140

HTML email resources
HTML emails are an amazing pain in the ass to produce in a manner where they appear properly across the plethora of commonly used email clients. At this point in time, it’s amazing how much work and testing can go into something so simple. I have used Mailchimp almost exclusively for bulk email for several years, but just ran across these cross application compliant templates this morning. Check them out, they might help ya.

very excited to try this out, but wonder if canon and nikon can live under the same roof.
WordPress custom posts and tags
I recently was working on a site trying to use custom post types and get tags to work. Getting tags to display using the_tags(); worked out just fine, but clicking the tag resulted in a 404 page. Here was the solution. I simply had to add this to my functions.php file.
add_filter('pre_get_posts', 'query_post_type');
function query_post_type($query) {
if(is_category() || is_tag()) {
$post_type = get_query_var('post_type');
if($post_type)
$post_type = $post_type;
else
$post_type = array('post','YOUR POST TYPE'); // replace cpt to your custom post type
$query->set('post_type',$post_type);
return $query;
}
}
UPDATE
you need to add ‘nav_menu_item’ to the post type array or else navigation menus will disappear if you’re using wp_nav_menu to call your menus. The final code should look like…
add_filter('pre_get_posts', 'query_post_type');
function query_post_type($query) {
if(is_category() || is_tag()) {
$post_type = get_query_var('post_type');
if($post_type)
$post_type = $post_type;
else
$post_type = array('nav_menu_item', 'post','YOUR POST TYPE'); // replace cpt to your custom post type
$query->set('post_type',$post_type);
return $query;
}
}

cookie monster sets it straight.

Recent Comments