Warning Message :
Warning:Cannot modify header information-headers already sent by (output started at (/themes/kaboodle/functions/admin-setup.php:174) in /wp-includes/pluggable.php on line 940
There is seems to an warning in line number 174 of file admin-setup.php
which is written as below :
echo '<link href="'. get_template_directory_uri() . '/styles/'. $style . '.css" rel="stylesheet" type="text/css" />' . "\n\n";
i have checked the admin-setup file with any hidden whitespace on php quotes() but still error is persisting. Could anyone help me out to solve this warning message. for reference i am putting lines below those are required to check for such error.
Line 174 :
*echo '<link href="'. get_template_directory_uri() . '/styles/'. $style . '.css" rel="stylesheet" type="text/css" />' . "\n\n";*
Re-direct function written as:
function woo_themeoptions_redirect () {
// Do redirect
header('Location: ' . admin_url() . 'admin.php?page=woothemes');
} // End woo_themeoptions_redirect()