昔ながらの土壁。
日本の伝統工法によって作られた土壁には、他の呼び方として、塗壁、左官壁、日本壁など様々な呼称があるが、明確な定義付けは行われていない。一般には木舞(こまい)と呼ばれる格子状の枠に土を塗り重ねた壁を指して用いられることが多い。–Wikipedia
– CONTAX T2 モノクロ
- カタチグラフィックスのBlog – Katachigfxの日記と制作メモ
03.30
Published 3月 30th, 2010 Posted in カタチのはなし
No Comments »
03.29
Published 3月 29th, 2010 Posted in カタチのはなし
No Comments »
03.28
Published 3月 28th, 2010 Posted in カタチのはなし
2 Comments »

それそれ!って顔。
03.25
Published 3月 25th, 2010 Posted in WordPress
No Comments »
そのままでは、「…続きを見る」の前の文字が文字化けしてしまう。
そこで、limit-post-ja.phpの下記を書き換える。
$content = mb_substr($content, 0, $max_char);
ここを、
$content = mb_substr($content, 0, $max_char,’UTF-8′);
.
使い方は、<?php the_content(); ?>を<?php the_content_limit(50, “続きを見る”); ?>とかにする。
–制作メモ
03.24
Published 3月 24th, 2010 Posted in WordPress
No Comments »
WordPress2.xにてパンくずを付けたい。
<?php
// — Breadcrumb Navigation XT –
if (class_exists(breadcrumb_navigation_xt)) {
// Display a prefix
echo ‘Navigation: ‘;
// new breadcrumb object
$mybreadcrumb = new breadcrumb_navigation_xt;
// Apply options
$mybreadcrumb->opt[’home_display′] = false;
// Display the breadcrumb
$mybreadcrumb->display();
} ?>
–制作メモ