Q.設定で表示できる最大数が20なのですが、24、28、32の選択肢を追加したいです。
デフォルトでは、トップページや「お店」アーカイブページの「表示するカテゴリーの数」で選択できるのは、4、8、12、16、20になっています。
▼変更箇所イメージ
A.下記の方法でカスタマイズしてください。
編集するファイル: options.php (admin/inc/options.php)
編集する箇所: 231行目付近
// ブログ一覧の数2 global $blog_num_options2; $blog_num_options2 = array( '4' => array('value' => '4','label' => '4'), '8' => array('value' => '8','label' => '8'), '12' => array('value' => '12','label' => '12'), '16' => array('value' => '16','label' => '16'), '20' => array('value' => '20','label' => '20') );
↓
// ブログ一覧の数2 global $blog_num_options2; $blog_num_options2 = array( '4' => array('value' => '4','label' => '4'), '8' => array('value' => '8','label' => '8'), '12' => array('value' => '12','label' => '12'), '16' => array('value' => '16','label' => '16'), '20' => array('value' => '20','label' => '20'), '24' => array('value' => '24','label' => '24'), '28' => array('value' => '28','label' => '28'), '32' => array('value' => '32','label' => '32') );
32以上に増やす場合は、同様の手順で追加し数値をご変更ください。
デザイン上、4の倍数で設定することをおすすめいたします。
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!