WordPress için Amazon S3 ile hata

0 Cevap php

Ben "WordPress için Amazon S3" olarak adlandırılan Amazon S3 dosyaları saklamak için harika bir Wordpress kullanıyorum bu sürümü Wordpress 3.0 + ile bir hata var gibi görünüyor.

Ben alıyorum hatadır:

Warning: strpos() expects parameter 1 to be string, array given in /home/dir/public_html/www.site.com/wp-admin/includes/media.php on line 310

İşte hattı 310 civarında media.php içinde kodu:

wp_enqueue_style( 'global' );
wp_enqueue_style( 'wp-admin' );
wp_enqueue_style( 'colors' );
// Check callback name for 'media'
if ( ( is_array( $content_func ) && ! empty( $content_func[1] ) && 0 === strpos( (string) $content_func[1], 'media' ) ) || 0 === strpos( $content_func, 'media' ) )
    wp_enqueue_style( 'media' );
wp_enqueue_style( 'ie' );

Ben oluyor ne kadar bazı ipucu isterim.

Teşekkürler

0 Cevap