Wordpress question - How do I add a break line?

2 replies
Hi guys,

I'm trying to add a line break (br) in my wordpress theme template, but it's not working.

I've already tried this:
HTML Code:
<?php
echo "\n";
?>
But, it doesn't work. Anyone know how?
#add #break #line #question #wordpress
  • Profile picture of the author entrepenerd
    Originally Posted by LiveAmbitions View Post

    Hi guys,

    I'm trying to add a line break (br) in my wordpress theme template, but it's not working.

    I've already tried this:
    HTML Code:
    <?php
    echo "n";
    ?>
    But, it doesn't work. Anyone know how?
    If you need the line break to happen in PHP, then

    <?php
    echo "<br />";
    ?>

    Otherwise just insert a regular HTML line break with <br />
    {{ DiscussionBoard.errors[2608419].message }}
    • Profile picture of the author sbwebmaster
      Originally Posted by entrepenerd View Post

      If you need the line break to happen in PHP, then

      <?php
      echo "<br />";
      ?>

      Otherwise just insert a regular HTML line break with <br />
      Thanks, the simple <br /> worked. I previously placed <br /> on the next line, and it didn't work.

      However, when I placed it immediately after the ?> it worked.
      {{ DiscussionBoard.errors[2608570].message }}

Trending Topics