Jump to content
Sign in to follow this  
dcwinton

Where do I edit the content that appears below the blog post title?

Recommended Posts

dcwinton

The default says "On December ___, 2009 In [category], [category], [category] By [Author]" What I would like is just: "December ___, 2009 by [Author]"

Share this post


Link to post
Share on other sites
Jackey

If it is iBlogPro3 theme you could edit library/_posts.php line 25 to: `

<?php _e('On', TDOMAIN)?> <?php the_time(get_option('date_format')); ?>, <?php _e('by', TDOMAIN);?> <?php the_author(); ?>
`

Share this post


Link to post
Share on other sites
dcwinton

It's Whitehouse Pro, but thank you. Your post helped me find it. But yuck. Having me edit that looks like a recipe for disaster. I just want to get rid of "On" and the categories. This is what I found... <div class="post-date"><?php _e('On');?> <?php the_time(get_option('date_format')); ?>, <?php _e('In');?> <?php the_category(', ') ?>, <?php _e('By');?> <?php the_author(); ?></div> <?php if(is_single() && pagelines('excerptshidesingle')):?> <?php else: ?> <?php if(!pagelines('excerptshide') && VPRO):?><div class="post-excerpt"><?php the_excerpt(); ?></div><?php endif;?> <?php endif; ?> </div>

Share this post


Link to post
Share on other sites
Jackey

So that woud be: `

<?php _e('On');?> <?php the_time(get_option('date_format')); ?>, <?php _e('By');?> <?php the_author(); ?>
` Be sure to have a backup of that file before you edit.

Share this post


Link to post
Share on other sites
dcwinton

Thanks. I'll try that. If you see a plume of smoke coming from the SF Bay Area you'll know I screwed up bad.

Share this post


Link to post
Share on other sites
dcwinton

Cool. It worked. No blood or tears even. Thank you.

Share this post


Link to post
Share on other sites
Jackey

Please make a note of these changes... when you upgrade your theme, you will probably loose them. Cheers!

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  

×