Edit File: pm-hakkimizda.php
<?php if (class_exists('CSF')) { CSF::createWidget('custom_text_with_image_widget', array( 'title' => 'Oruno - Footer Hakkımızda', 'fields' => array( array( 'id' => 'title', 'type' => 'text', 'title' => 'Başlık', ), array( 'id' => 'content', 'type' => 'wp_editor', 'title' => 'Metin', 'settings' => array( 'textarea_name' => 'content_' . rand(), // content_ ile başlayan rastgele bir sayı ekleyebilirsiniz 'textarea_rows' => 10, // Düzenleyici satır sayısı ), ), ), )); // Bileşenin içeriğini gösteren fonksiyon if (!function_exists('custom_text_with_image_widget')) { function custom_text_with_image_widget($args, $instance) { echo $args['before_widget']; if (!empty($instance['title'])) { echo $args['before_title'] . apply_filters('widget_title', $instance['title']) . $args['after_title']; } if (!empty($instance['content'])) { echo wpautop($instance['content']); } if (!empty($instance['image'])) { echo '<img src="' . esc_url($instance['image']) . '" alt="Görsel">'; } echo $args['after_widget']; } } } ?>