Title: Adding editable content above posts
Last modified: August 19, 2016

---

# Adding editable content above posts

 *  Resolved [dansullivannyc](https://wordpress.org/support/users/dansullivannyc/)
 * (@dansullivannyc)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/adding-editable-content-above-posts/)
 * I want to have a content area above my posts where I can use the wordpress dashboard
   to edit the content. However, when I go to manage>pages and then to the page 
   which has my blog posts, and try to add text, nothing shows up. I have basic 
   dev skills and I’m wondering if I have to go in and add a line of PHP before 
   the post loop to allow content above it. Any feedback would be greatly appreciated!
   Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [stvwlf](https://wordpress.org/support/users/stvwlf/)
 * (@stvwlf)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/adding-editable-content-above-posts/#post-1071762)
 * Hi
 * When you set a page up as a page to display blog posts, any page content on that
   page is ignored. You can add it into your template using a secondary WP loop.
   I suggest using get_post as it is easy.
 *     ```
       <?php
       $page_id = 2; // substitute page_id of page you want content included from for "2"
       $page = get_post($page_id);
       echo "<p>$page->post_content</p>";
       ?>
       ```
   
 *  Thread Starter [dansullivannyc](https://wordpress.org/support/users/dansullivannyc/)
 * (@dansullivannyc)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/adding-editable-content-above-posts/#post-1071781)
 * That worked perfectly! Thank you so much 🙂

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Adding editable content above posts’ is closed to new replies.

## Tags

 * [content](https://wordpress.org/support/topic-tag/content/)
 * [loops](https://wordpress.org/support/topic-tag/loops/)
 * [posts](https://wordpress.org/support/topic-tag/posts/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [dansullivannyc](https://wordpress.org/support/users/dansullivannyc/)
 * Last activity: [17 years, 1 month ago](https://wordpress.org/support/topic/adding-editable-content-above-posts/#post-1071781)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
