2010年10月15日
2010年10月14日
WordPressでトップページに投稿に入れた画像を自動的に引っ張る
Wordpressでトップページにサムネイルなどで投稿の画像を並べる場合
カスタムフィールドで画像を登録することもできるのですが、
下記の用に投稿から抜き出すようにfunction.phpに記述しておけば
自動的に引っ張ってこれる
function.phpに記述
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "http://img149.imageshack.us/img149/8779/curses.png";
}
return $first_img;
}home.phpなどでの記述方法
<img src="<?php echo catch_that_image() ?>" alt="<?php the_title(); ?>" /></a>
2010年10月6日
こりゃすごいわ「Wiimote Looper by Calum Scott」
wiiコン使ってループ演奏してる。
こりゃ凄いわ。
Wiimote Looper from Calum Scott on Vimeo.
2010年10月3日
モレスキン純正のiPadとiPhoneケースが発売!
普段愛用しているモレスキン(Moleskine)からiPhone3G iPhone3GSのノートパッド格納出来るケースとiPadのノートパッド格納出来るケースが発売されるらしく、さっそくAmazonでポチッとしてしまいました。
これがiPhone3G iPhone3GS用 Moleskine Folio iPhone Cover

こっちが iPad用 Moleskine Folio iPad Cover



