Q.表示する記事の上限を変更するにはどうしたら良いでしょうか?
表示する記事の上限が設定では2~12の間で選択できるようになっていますが、
上限を20に変更することはできませんでしょうか?
A.下記の方法でカスタマイズください。
記事数を増やすためには、下記のように設定をしてください。
外観>テーマの編集より
編集ファイル
theme-options.php (admin/theme-options.php)
// トップページのブログの数 global $index_blog_num_options; $index_blog_num_options = array( '2' => array('value' => '2','label' => '2'), '4' => array('value' => '4','label' => '4'), '6' => array('value' => '6','label' => '6'), '8' => array('value' => '8','label' => '8'), '10' => array('value' => '10','label' => '10'), '12' => array('value' => '12','label' => '12') );
↓↓↓
// トップページのブログの数 global $index_blog_num_options; $index_blog_num_options = array( '2' => array('value' => '2','label' => '2'), '4' => array('value' => '4','label' => '4'), '6' => array('value' => '6','label' => '6'), '8' => array('value' => '8','label' => '8'), '10' => array('value' => '10','label' => '10'), '12' => array('value' => '12','label' => '12'), '14' => array('value' => '14','label' => '14') );
この記事は役に立ちましたか?
もし参考になりましたら、下のボタンで教えてください。
今後の記事作成の参考とさせて頂きます!