hazarardatuysuz adlı üyeden alıntı: mesajı görüntüle
hocam ftpden function.php sayfasını bulup gerekli line'daki kodu söylediği kod ile değiştirin sorun düzelir
İlgili satır "E_USER_DEPRECATED" yazan yer. Öncesi ve sonrasındaki kodlarla birlikte aşağıdaki gibi. Tam nereyi sileceğim anlayamadım. O satırı sildiğimde düzelmedi. Yardımcı olabilir misiniz?

   */
    if ( WP_DEBUG && apply_filters( 'deprecated_function_trigger_error', true ) ) {
        if ( function_exists( '__' ) ) {
            if ( $replacement ) {
                trigger_error(
                    sprintf(
                        /* translators: 1: PHP function name, 2: Version number, 3: Alternative function name. */
                        __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
                        $function,
                        $version,
                        $replacement
                    ),
                    E_USER_DEPRECATED
                );
            } else {
                trigger_error(
                    sprintf(