Functions.php'de bileşen ekliyordum bir hata verdi ama bileşenle alakası yok :confused: Hata:Parse error: syntax error, unexpected T_STRING in /home/kemre/public_html/demo/wp-content/themes/FaktorWP/functions.php on line 16Functions.php:
//Öne Çıkarılmış Görsel
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 610 , 9999 );
//Yan Menü
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '',
'before_title' => '
',
'after_title' => '
',
));
?> /* Çift Sütunlu Kategoriler Bileşeni */
add_action( 'widgets_init', 'cat_widgets' );
function FaktorWP_cat_widgets() { register_widget( 'cat_widget' ); }
class FaktorWP_cat_widget extends WP_Widget {
function FaktorWP_cat_widget() {
/* Widget settings */ $widget_ops = array( 'classname' => 'widget_cat', 'description' => __('Bu Bileşen ile kategorileri çift sütunlu bir şekilde kullanabilirsiniz.', 'FaktorWP') );
Hocam dediğinizi yaptım fakat bu seferde aşağıdaki hatayı verdi:confused: Parse error: syntax error, unexpected T_STRING in /home/kemre/public_html/demo/wp-content/themes/FaktorWP/functions.php on line 1
Zaten "UTF-8 BOM'suz" olarak kayıt edili :confused:
Ek Olarak: Sorun çözülmüştür. Konu kapatılabilir.
Sorunu çözüyorsanız bari nasıl çözdünüz onuda yazın. Kendinizi düşünmekten vazgeçin. Yardım forumu burası sonuçta. Sizin gibi başkalarınında ihtiyacı olabilir.
Sorun tarafimdan cozulmustur. Kodlari incelediginiz zaman } parantezinden eksik oldugunu goreceksiniz. add_action( 'widgets_init', 'cat_widgets' );
function FaktorWP_cat_widgets() { register_widget( 'cat_widget' ); } bu alandada bileseni kaydettirme sorunu bulundugundan hata vermekteydi. Gerekli duzenlemeleri yapinca sorun ortadan kalkti.