Seems like stripslashes problem, please help..

Discussion in 'WordPress' started by Rajnish357, Nov 8, 2011.

  1. #1
    I am using this code
    <?php $values = get_post_custom_values("lyrics"); echo $values[0]; ?>
    PHP:
    to get the lyrics I am adding in the custom field, but when I am adding content like:
    means line by line


    BUT it outputs it like:
    That means in single line

    Please help someone to get content as it was entered.
     
    Rajnish357, Nov 8, 2011 IP
  2. AlohaThemes.com

    AlohaThemes.com Active Member

    Messages:
    128
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #2
    Give this a try:

    <?php $values = get_post_custom_values("lyrics"); echo "<p>".nl2br($values[0])."</p>\n"; ?>

    I am not a "developer" and have not tested this, so there may be a better way, but it might work for you.

    You can learn more here if needed: http://us.php.net/nl2br

    Good luck!
     
    AlohaThemes.com, Nov 9, 2011 IP
  3. Rajnish357

    Rajnish357 Well-Known Member

    Messages:
    157
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #3
    Hey Thanks for the help it is working like I want but it is adding 2 <br/> after each line can you make it 1 ??
     
    Rajnish357, Nov 11, 2011 IP
  4. AlohaThemes.com

    AlohaThemes.com Active Member

    Messages:
    128
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #4
    Cool. You are Here's a couple things to try:
    1. remove the \n from the end of the code and try it again
    2. remove the <p> </p> tags

    Good luck :)
     
    AlohaThemes.com, Nov 11, 2011 IP
  5. Rajnish357

    Rajnish357 Well-Known Member

    Messages:
    157
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    103
    #5
    Thanks it worked after making it like this
    <?php $values = get_post_custom_values("lyrics"); echo nl2br($values[0]); ?>
     
    Rajnish357, Nov 11, 2011 IP
  6. AlohaThemes.com

    AlohaThemes.com Active Member

    Messages:
    128
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    83
    #6
    Sweet thanks for sharing.
     
    AlohaThemes.com, Nov 11, 2011 IP