StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 02-24-2009, 06:24 PM
SoZo's Avatar
SoZo SoZo is offline
Community Moderator
 
Join Date: Oct 2008
Location: Minneapolis, Minnesota
Posts: 47,500
Default Re: Want to add static article post to main home page?

Either of these should work. Just replace the "1" with the post ID

<?php query_posts('p=1'); ?>
<?php while (have_posts()) : the_post(); ?>
<h4><?php the_title(); ?></h4>
<?php the_content(); ?>
<?php endwhile;?>

or

<?php
$my_id = 1;
$post_id_1 = get_post($my_id);
$content = $post_id_1->post_content;
$content = apply_filters( 'the_content', $content );
print $content;
?>
__________________
John "Nicolas Flamel" Wright | SoZo's design | John Wright Photography

New to Genesis? Check out Genesis Explained.
"We are the music makers, and we are the dreamers of dreams..." - Arthur O'Shaughnessy

"Some days even my lucky rocket ship underpants don't help" - Calvin
StudioPress on Facebook
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Home page to have static welcome post ace2279 General Discussion 10 07-16-2010 07:36 PM
All links on the main page, go to the same article wakemedia General Discussion 2 07-19-2009 04:16 PM
Static Post on home page dovellB General Discussion 1 05-08-2009 04:08 PM
Adding Static Text Box to Post Area on Main Page KathyDV General Discussion 2 04-27-2009 08:53 PM
Making the main Featured Post Box static seoatsea General Discussion 3 12-18-2008 10:25 AM


All times are GMT -5. The time now is 11:22 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.