Enough info

WordPress theme Enough

この画面は、簡易表示です

2012 / 8月

Bug report

Admin panel Categories text disappear.

add_filter( 'the_category' , 'enough_remove_ref' );

function enough_remove_ref($content){

preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];

}

Please Change below.


//add_filter( 'the_category' , 'enough_remove_ref' );

function enough_remove_ref($content){

preg_match( '!(.+)rel="[^"]+"(.+)!', $content, $regs );
return $regs[1].$regs[2];

}

This bug will be fixed Enough ver 0.42

Thank you.



ページの区切りを付ける

Ver 0.42では、この方法を使わなくても、背景色の設定が思い通りに出来るようになります。

ver0.42以降では、この方法は使わないほうがいいです。

Enoughは、ページと、背景を区別するボーダーがありません。

両側に5%のマージンがあるだけで、ちょっと違和感を感じるという場合は、ページと背景を以下の方法で、区切って表示できます。

style.css

html{
/* add your custom background*/
}
body{
background-clip:content-box;
}

  • カテゴリー:


top