Hi All,
I am able to get mails in local.
when go live i am not able to receive them.
please any one can help me.
Thanks in Advance
When go to add page in admin, u can see Custom field (m using wordpress3.0.1).
add field name and value.
I used same field name for diffrent page with different values.
id header i wrote some code to get the background value
$background_flag = get_post_meta($post->ID, "background", true);//get back ground class
if($background_flag!=''){
$background_class=$background_flag."_background";
}
then i applied the class to wrapper id (div) class=”<?php echo $background_class;?>”
its working fine.
Use this if u need
Hi All,
Thanks for reply.
I have got solution.I added the custom field value as background class for pages and dynamically i applied class to wrapper div.