Buchbinden

  • http://emilyduong.com/blog/a-visual-reference-bookbinding
  • http://briansawyer.net/2007/03/20/bookbinding-links-roundup/
  • http://www.tortagialla.com/2010/08/16/chain-or-coptic-stitch-bookbinding-tutorial/
  • http://www.craftster.org/forum/index.php?topic=15338.msg126639#msg126639
  • http://the0phrastus.typepad.com/the0phrastus/2005/06/simple_book_bin.html
  • http://briansawyer.net/2007/03/20/bookbinding-links-roundup/

making blogger show wordpress post thumbnail

Image Src URL shown in sidebar of other blog

http://3.bp.blogspot.com/-n2uM4ikFoG0/VBqeNaCE6RI/AAAAAAAAIbM/Kg7P3VqMO-o/s72-c/P1030561.jpg
]]>

Link in the blogpost header

href=’http://3.bp.blogspot.com/-n2uM4ikFoG0/VBqeNaCE6RI/AAAAAAAAIbM/Kg7P3VqMO-o/s1600/P1030561.jpg’
rel=’image_src’/>
]]>

later:

itemtype=’http://schema.org/BlogPosting’>
content=’http://3.bp.blogspot.com/-n2uM4ikFoG0/VBqeNaCE6RI/AAAAAAAAIbM/Kg7P3VqMO-o/s1600/P1030561.jpg’
itemprop=’image_url’/>
]]>

function catch_that_image() {
global $post, $posts;
$first_img = ”;
ob_start();
ob_end_clean();
$output = preg_match_all(‘//i’,
$post->post_content, $matches);
$first_img = $matches [1] [0]; if(empty($first_img)){ //Defines a default image
$first_img = “/images/default.jpg”;
}
return $first_img;
}
]]>