Viewing 3 replies - 1 through 3 (of 3 total)
  • edit index.php of your theme (or home.php if exists – http://codex.wordpress.org/Template_Hierarchy )

    <?php
    if( get_option( 'page_for_posts' ) ) {
    	$posts_page = get_page( get_option( 'page_for_posts' ) );
    	echo apply_filters( 'the_content', $posts_page->post_content );
    }
    ?>
    Thread Starter HoggeHog

    (@hoggehog)

    Thanks a lot alchymyth, it works like a charm!!

    Alex

    (@graphicfusion)

    get_page is depreciated. This is better version:

    <?php
    if ( get_option( 'page_for_posts' ) ) {
        $posts_page = get_post( get_option( 'page_for_posts' ) );
        echo apply_filters( 'the_content', $posts_page->post_content );
    }
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Display static page content on blog page, above posts’ is closed to new replies.