So, I’ve been googling and reading and testing and failing.
I’m fairly new to php, so don’t expect to much 🙂
I’m working on a new design, and I want to show content from the about page on my homepage, which is dynamic. So, I’ve been looking into that the_content thing, but I havent gotten any luck so far.
<?php
$id=about;
$post = get_page($id=);
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>
the ID of the page is “about”, if that is any help.
Please get back to me 🙂
First off: The ID of a post or page is always an integer. “about” is either your about page’s title, slug or both.
Including the following in your “homepage’s” page template or in the sidebar combined with conditional tag(s) will display the about page’s content:
Edit: The above works, IFF your page’s slug is indeed “about”, otherwise adjust accordingly.
I wanted something similar but with page Title, this is how I achieved it:
The codex is your friend!
http://codex.wordpress.org/Function_Reference/get_post
(ARRAY_A – Returns an associative array of field names to values)
It’s a start.
Best way to get the current page content
or