Title: jarrydtrycode's Replies | WordPress.org

---

# jarrydtrycode

  [  ](https://wordpress.org/support/users/jarrydtrycode/)

 *   [Profile](https://wordpress.org/support/users/jarrydtrycode/)
 *   [Topics Started](https://wordpress.org/support/users/jarrydtrycode/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jarrydtrycode/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jarrydtrycode/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jarrydtrycode/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jarrydtrycode/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jarrydtrycode/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Update option in the database with html tags](https://wordpress.org/support/topic/update-option-in-the-database-with-html-tags/)
 *  [jarrydtrycode](https://wordpress.org/support/users/jarrydtrycode/)
 * (@jarrydtrycode)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/update-option-in-the-database-with-html-tags/#post-2221945)
 * I’m assuming that you want to do something with that html code somewhere?
 * I have yet to find a way to prevent that function from escaping the quotes, but
   you could try using the php built-in-function ‘stripslashes()’ to display the
   html properly anyway, like so:
 *     ```
       <?php
   
       $display = '<span style=\"font-weight: bold;\">Bold</span>';//the content
   
       echo stripslashes($display);
   
       ?>
       ```
   
 * This will display your content as if the update_option function hadn’t escaped
   all the quotes.

Viewing 1 replies (of 1 total)