widget-video.php dosyası iki kere include edildiği için bu hatayı alıyorsunuz.
require(PT_FRAMEWORK . '/widget-video.php');
veya
include(PT_FRAMEWORK . '/widget-video.php');
bir kod varsa bunu
require_once(PT_FRAMEWORK . '/widget-video.php');
yapmalısın.
require(PT_FRAMEWORK . '/widget-video.php');
veya
include(PT_FRAMEWORK . '/widget-video.php');
bir kod varsa bunu
require_once(PT_FRAMEWORK . '/widget-video.php');
yapmalısın.
Bu dediğiniz olayı hangi dosya üzerinde yapacağım functions.php'de olan şeyi yukarıda belirttm require_once seklinde yaziyor. Biraz daha açık anlatabilirseniz çok sevineceğim.