Title: Adding wpautop to theme options?
Last modified: August 20, 2016

---

# Adding wpautop to theme options?

 *  Resolved [flint_and_tinder](https://wordpress.org/support/users/flint_and_tinder/)
 * (@flint_and_tinder)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/adding-wpautop-to-theme-options/)
 * I’ve recently changed my theme options to use the Setting API and don’t know 
   how to add wpautop to the code needed to pull in the theme options. According
   to the tutorial I need to pull in the options like this: `<?php echo $vd_option['
   vd_home_text_pre_link']; ?>`In order to add wpautop to my old theme options I
   did this:
 *     ```
       <?php
       $vht = get_option('vd_homepage_text');
       echo wpautop($vht);
       ?>
       ```
   
 * Putting the two together I’ve come up with the following however it doesn’t work.
   Does anyone know what I need to do to fix it. I’m no PHP expert!
 *     ```
       <?php
       	 $vht = echo $vd_option['vd_home_text'];
       	 echo wpautop($vht);
       	 ?>
       ```
   

Viewing 1 replies (of 1 total)

 *  Thread Starter [flint_and_tinder](https://wordpress.org/support/users/flint_and_tinder/)
 * (@flint_and_tinder)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/adding-wpautop-to-theme-options/#post-2428455)
 * No probs I’ve done it. Just needed to remove the first echo:
 *     ```
       <?php
       	 $vht = $vd_option['vd_home_text'];
       	 echo wpautop($vht);
       	 ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Adding wpautop to theme options?’ is closed to new replies.

## Tags

 * [wpautop](https://wordpress.org/support/topic-tag/wpautop/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 1 participant
 * Last reply from: [flint_and_tinder](https://wordpress.org/support/users/flint_and_tinder/)
 * Last activity: [14 years, 5 months ago](https://wordpress.org/support/topic/adding-wpautop-to-theme-options/#post-2428455)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
