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!
I am addicted to internet marketing and making money online. Who wouldn't want to live that life? I started out with one website as a hobby and now have over 20.

















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.