add_image_size()

【関数】add_image_size( 画像サイズ名, 画像幅, 画像高, 切り抜き可否 )
新しい画像サイズを登録する。function.php内に記述する。

function neko_theme_setup(){
  //横1100px、縦610pxに切り抜いた画像をpage_eyecatchというサイズ名で登録する
  add_image_size( 'page_eyecatch', 1100, 610, true );
}
add_action( 'after_setup_theme', 'neko_theme_setup' );
inserted by FC2 system