How Would I Display Today's Posts Only?

What about in your Post model:

def self.todays_posts

self.find(:all, :conditions => [“post_date = ?”, Date.today])

end

Then in your controller:

def index

@posts = Post.todays_posts

end

And in your view:

<% @posts.each do |post| %>

<%= h post.title %>

<% end %>

Best regards

Peter De Berdt