250, 'height' => 100, 'flex-height' => true, 'flex-width' => true, ) ); /*Özel logo*/ /*Çeviri Dili*/ load_theme_textdomain( 'ogbb', get_template_directory() . '/languages' ); /*Çeviri Dili*/ //Menu ozelligi*/ register_nav_menus( array( 'menu' => __( 'Menu', 'ogbb' ), ) ); /*Ozel Arkaplan*/ add_theme_support( 'custom-background', apply_filters( 'ogbb_custom_background_args', array( 'default-color' => 'efefef', 'default-image' => '', 'default-repeat' => '', 'default-attachment' => '', ) ) ); } add_action( 'after_setup_theme', 'ogbb_setup' ); /*Tema setup dosyasi*/ if ( ! isset( $content_width ) ) $content_width = 795; add_action( 'widgets_init', 'ogbb_widgets_init' ); function ogbb_widgets_init() { register_sidebar( array( 'name' =>__('Widget','ogbb'), 'id' => 'sidebar', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /* Yorum cevaplama*/ if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // Yorum cevaplama /*still sabitleme*/ function ogbb_scripts() { wp_enqueue_style( 'ogbb-style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'ogbb_scripts' ); ?>