Archive for September, 2011

Crying in the rain

Sunday, September 18th, 2011

For someone! Other version can be found here


Don Williams

I’ll never let you see
The way my broken heart is hurting me
I’ve got my pride and I know how to hide
All the sorrow and pain
I’ll do my crying in the rain

If I wait for cloudy skies
You won’t know the rain from the tears in my eyes
You’ll never know that I still love you
So though the heartaches remain
I’ll do my crying in the rain

Raindrops falling from heaven
Will never wash away my misery
But since we’re not together
I’ll wait for stormy weather
To hide these tears I hope you’ll never see

Someday when my crying’s done
I’m gonna wear a smile and walk in the sun
I may be a fool
But till then, darling, you’ll never see me complain
I’ll do my crying in the rain
I’ll do my crying in the rain
I’ll do my crying in the rain
I’ll do my crying in the rain

Cannot rewrite post/page title by Platinum SEO Pack plugin

Friday, September 16th, 2011

Few days ago, I solved a bug “Cannot rewrite post/page title” of Platinum SEO Pack plugin. If you search somewhere in the Net, you will see the main reason is miss wp_head() function in your WP theme but in my case, the reason is query_posts(). The developer used query_posts() function without wp_reset_query() after so $post variable will be overrided in somewhere if has post/page queries.

So, to solve this bug, just simple (always) put wp_reset_query() after query_posts() except you want to reuse global $post variable.