دوستان وقتی من این قالب blueshop رو فعال میکنم وقتی بخوام مطلب بزارم یا تو وردپرسم لاگین بشم این ارور میاد
Warning: Cannot modify header information - headers already sent by (output started at /home/dlsevenh/public_html/wp-content/themes/blueshop/functions.php:13) in /home/dlsevenh/public_html/wp-includes/pluggable.php on line 866
اینم متن فایل functions
<!--www.deviran.com-->
<?php
if (function_exists('register_sidebar'))
{
register_sidebar(array(
'name' => 'left1',
'before_widget' => '<div class="sidebar">',
'after_widget' => '</div><div class="sidebar-b"></div></div>',
'before_title' => '<div class="sidebar-t">',
'after_title' => '</div><div class="sidebar-i">',
));
register_sidebar(array(
'name' => 'left2',
'before_widget' => '<div class="sidebar">',
'after_widget' => '</div><div class="sidebar-b"></div></div>',
'before_title' => '<div class="sidebar-t">',
'after_title' => '</div><div class="sidebar-i">',
));
}
if ( function_exists( 'add_theme_support' ) ) { // Added in 2.9
add_theme_support( 'post-thumbnails' );
add_image_size( 'sp-img', 120, 120, true );
add_image_size( 'post-img', 200, 155, true );
add_image_size( 'left-img', 70, 60, true );
}
function sp_img(){
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'sp-img', array() );
} else {
?>
<?php
};
}
function post_img(){
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'post-img', array() );
} else {
?>
<?php
};
}
function left_img(){
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'left-img', array() );
} else {
?>
<?php
};
}
?>
<!--www.deviran.com-->
ممنون میشم ویرایشش کنید