Admin bar and fixed header issue?
in your css you could try something like: body.logged-in{margin-top:20px;} or if this doesnt work some other code using the .logged-in class
in your css you could try something like: body.logged-in{margin-top:20px;} or if this doesnt work some other code using the .logged-in class
You can either add custom rewrites to your pages. Or on the top of the template files that wrap your other pages just output header(‘HTTP/1.1 200 OK’);.
Hi @helenyhou: You can set the header, just not with a parameter. WordPress uses “hooks” and the hooks you need are ‘wp_mail_from’ and ‘wp_mail_from_name’ hooks. Here are the hooks you might add to your theme’s functions.php file to modify the “From:” header when using wp_mail() to the email address Helen Hou-Sandi <[email protected]>: add_filter(‘wp_mail_from’,’yoursite_wp_mail_from’); function yoursite_wp_mail_from($content_type) … Read more