How do I edit a wordpress page to display only the posts, so minus the menubars?
My goal here is to link the wordpress blog entries to a frame in a personal site. So I want only the blog entries to appear, but none of the menu bars or other things associated with wordpress only what was posted. I know wordpress is done in PHP so i was wondering if anybody knew the specifics of the coding and how I would go about doing this. Thanks!
Public Comments
- you can edit your page.php file of your current theme, and delete these following code: <?php get_header(); ?> <?php get_sidebar(); ?> <?php get_footer(); ?> then your page will only have the content on it, no header, no sidebar and no footer.
Powered by Yahoo! Answers