Jump to content
Sign in to follow this  
pasuay

iBlogPro3: How to make the twitter feed into a latest post entry?

Recommended Posts

pasuay

Is it possible to change the twitter feed under the feature box to display a single line of the latest post? Something like: Latest News: abcd s fskdfjksjfs ksdfsf

Share this post


Link to post
Share on other sites
cmunns

Yes this is possible. The easiest way to do it would be to modify the feature page template with a call to the latest post

Share this post


Link to post
Share on other sites
pasuay

Would you please kindly give me some hints on how to do this? Thanks!

Share this post


Link to post
Share on other sites
pasuay

I located the place of the code. What is the php code to display the title of the most recent post? Thanks.

Share this post


Link to post
Share on other sites
pasuay

Hi, I've figured out the code: <?php query_posts('showposts=1'); ?> <?php the_post(); ?> <div >News Headline: "><?php the_title(); ?></div> Is there a way to rotate between the most 5 recent posts? Sorry I am not familiar with PHP

Share this post


Link to post
Share on other sites
cmunns

add this: ` <?php $random_post = rand(1,5); query_posts('showposts=$random_post'); ?> `

Share this post


Link to post
Share on other sites
pasuay

Thanks. How about I would like the news to be updated without refresh? Actually i found a plugin which can exactly do what I want. However when I try to put this plugin at that space, the CSS was messed up. Do you have any experience in this plug? thx

Share this post


Link to post
Share on other sites
cmunns

You want the random posts to cycle through automatically? If the plugin is only messing up the css then send us a link and we can probably fix it.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×