Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPressで改行を追加する方法(新規: 改行間隔)

最近、ユーザーからWordPressで改行を追加したり、ブロック間の行間を調整する方法はないかと尋ねられました。

たいていのワープロでは、Enterキーを数回押すだけで、簡単に空白行を追加することができます。また、設定オプションから段落の後にダブルスペース行を作成することもできます。しかし、WordPressのブロックエディターにはそのようなボタンはありません。

この投稿では、WordPressで簡単に改行を追加する方法を紹介します。

How to Add a Line Break in WordPress

始める前に、行間は使用しているWordPressテーマによってコントロールされることを知っておくことが重要です。

ブロックエディターでブロック間にスペースを追加する方法を紹介し、その結果に満足できない場合は、テーマの行間を変更する方法を説明します。

動画チュートリアル

Subscribe to WPBeginner

動画が気に入らなかったり、もっと説明が必要な場合は、このまま読み進めてください。

ブロック間に二重線スペースを追加する

Windowsの場合はEnterキー、Macの場合はReturnキーを押して改行すると、WordPressはそれを新しい段落とみなします。

これは、あなたのテーマがそのためのスタイルを持っている(すべての良いWordPressテーマがそうである)限り、自動的にダブル行スペースを追加することを意味します。

Adding double line spacing in WordPress

コンテンツエディターに移動し、行の後にEnterキーまたはReturnキーを押し、次の行に別の何かを入力するだけです。

そうするだけで、テーマのスタイリングに基づき、段落間の区別が明確になるはずだ。

Double line space added to create paragraph in WordPress

個別行スペースの追加

さて、住所のようなものを書く場合、WordPressサイトではダブルスペースではなく、個別スペースにしたいだろう。

Single Space Preview

この場合、WindowsではSHIFT + ENTERキー、MacではSHIFT + RETURNキーを押す必要があります。

これはWordPressに、既存の段落の中で改行したいことを伝えます。したがって、個別行間と二重行間が必要になります。

線の高さと間隔の変更

エディターで適切な行間を追加しても、テーマでは思い通りに表示されないことがある。

解決する方法は2つある:

  1. プラグインを使う(簡単な方法)
  2. 手動によるCSSコード(より高度なもの)

まずは簡単な方法を見てみよう。

プラグインを使って行間を追加する

コードを学ぶことなくテーマにスタイルの変更を加えたい場合は、CSS Heroのようなプラグインを使うのが一番です。

CSS Heroを使えば、コードを知らなくてもWordPressサイトのデザインを簡単に変更できます。

Add paragraph spacing in WordPress with CSS Hero

詳しくはCSSヒーローのレビューをご覧ください。

サイドバーの移動やフッターの追加など、テーマに大きな変更を加えたい場合は、ドラッグ&ドロップのページビルダー・プラグインの方が良い設定だろう。ページビルダー・プラグインを使えば、WordPressでフォントの色を変えたり、改行を追加したりといった小さな調整もできる。

プラグインを使いたくない、あるいは、たったこれだけの変更が必要だとお考えですか?それなら、手動CSSコード設定が最適かもしれません。

CSSコードで段落間隔を手動で変更する

プラグインを使わずに手動で改行を追加するには、テーマにCSSを追加する必要がある。

CSSは基本的に、Microsoft Wordの書式設定機能のようなものです。ボタンをクリックする代わりに、プレーンなCSSコードを書くことになる。初心者が思っているほど怖いものではありません。指示に従うだけなら、CSSはとても簡単に理解できます。

テーマにカスタムCSSを追加するには、外観 ” カスタマイズページにアクセスする必要があります。WordPressテーマカスタマイザーが起動しますので、左の列から「Additional CSS」タブをクリックしてください。

これらのメニューオプションが表示されない場合は、ブロックテーマを使用している可能性があります。WordPress管理画面のテーマカスタマイザーが表示されない場合の対処方法の投稿をご覧ください。

Adding your custom CSS

カスタムCSSボックスに、以下のCSSコードを追加する必要があります:

.post p{line-height: 1.5em;}

上に示したCSSルールは、段落コンテンツの行間を1.5emに変更します。emはタイポグラフィの幅の単位です。

.postクラスを使用していますが、これはWordPressがすべての投稿のコンテンツエリアに自動的に追加するもので、投稿だけに影響し、他の場所で使用されている段落には影響しません。

Adding custom CSS to increase line height

さて、これは個別スペーシングの間隔を変えるだけである。

WordPressで段落の間隔を変えたい(つまりダブルスペースにしたい)場合は、パディングを追加する必要がある。

.post p { 
line-height: 1.5em;
padding-bottom: 15px;
} 

ご自由に数字を調整し、HTMLでダブルスペースを追加してください。

また、WPCodeプラグインを使用してサイトにカスタマイザーCSSを追加することができます。このプラグインを使えば、サイトへのコードの挿入や管理がとても簡単になります。

詳しくは、WordPressサイトにカスタムCSSを追加する方法をご覧ください。

この投稿がWordPressで改行を追加するのにお役に立てば幸いです。WordPressのブロックパターンの使い方や、GutenbergにフレンドリーなWordPressテーマも参考にしてみてください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

99件のコメント返信を残す

  1. Ralph

    This was huge problem back in old creator. I never knew how it will look like and had to hit preview every couple of lines but i think with gutenberg it is way easier and i learnd to just use shift+enter. I do this automatically and almost without consciousness. Don’t know why but some websites don’t allow shift+enter only enter or not and then I’m like “WHY it is not working”!

  2. Deepak Sahani

    Superb video & post solved my query.

    • WPBeginner Support

      Glad our guide could be helpful! :)

      管理者

  3. Jennyfer

    Thank you very much for thus information! Very useful. Just what I was looking for.

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  4. Colleen Cochran

    I finally figured out the shift-enter thing for poetry single space lines, but when the post is published and emailed to followers, it loses formatting and all the lines run together. How do I fix that?

    • WPBeginner Support

      You would want to check with the tool being used to send the notification for the styling for fixing that issue.

      管理者

  5. Luiz

    Thank you! Very useful!

    • WPBeginner Support

      You’re welcome :)

      管理者

  6. Robin

    So helpful! Thank you!!

    • WPBeginner Support

      You’re welcome :)

      管理者

  7. Dhirendra

    Any option for reduce image gap…

  8. jan van den hoed

    Thanks for the explanation. One question though. How can i do the same thing on a smartphone. I’m editing my blog on the way and do not have a laptop available. i tried to do shift enter but that did not work

    • WPBeginner Support

      Due to the limitations of mobile, you would likely need to use the CSS method.

      管理者

  9. Val

    Thank you so much, such a great help. I agonized over spacing!

    • WPBeginner Support

      Glad our guide was helpful :)

      管理者

  10. Stephen

    Thanks, it helped a great deal.

    • WPBeginner Support

      Glad our article was helpful :)

      管理者

  11. Douglas Daniel

    To change the CSS it’s telling me I have to purchase a premium plan. Am I out of luck?

  12. SOO

    Thank You! Helpful!!

    • WPBeginner Support

      You’re welcome, glad our article could help :)

      管理者

  13. Rebecca

    I did not work for me. Any reasons it would not work?

    • WPBeginner Support

      If you’re using a page builder plugin they may have a different method for the single/double line spacing. Otherwise, it could be a plugin/theme conflict where you would need to disable your plugins and/or swap your theme to check

      管理者

  14. Tim G

    I would like to reduce the spacing between normal paragraph lines — IMHO, there is too much white space by default. I’d also like to add a half line at the end of a paragraph, rather than a full line: Wordpress by default seems to just do the equivalent of a double carriage return which is rather twentieth century and doesn’t emulate what Word can do. Any ideas?

    • WPBeginner Support

      You would want to reach out to the support for your specific theme and they should be able to tell you what CSS needs to be added to reduce your line spacing :)

      管理者

  15. sofar ahmad

    TQ so much

    very helpful

    • WPBeginner Support

      Glad our guide could be helpful :)

      管理者

  16. Sumeet

    thanks that was what i was looking for it helped …

    • WPBeginner Support

      Glad our article helped :)

      管理者

  17. Jen

    God bless you! I’m so grateful for you posting this with the CSS! Who knew that’s all it took for me to change the spacing! I’ve been looking for something like this for a long time! Thank you so much!

    • WPBeginner Support

      Glad our article could help you :)

      管理者

  18. Kathy

    I am using the “shift” enter method but it does not allow for different size font when I do. Is there a work around?

  19. Lora Staples

    GREAT video. Loved the content, pacing, and tone of the speaker. THANKS!

  20. Kunal Khandelwal

    Thank you so much for this suggestion. Didn’t know it was so easy :)

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。