10Dez/08Off
FLV in WordPress hochladen
Zuerst rausfinden wo die Funktion ist die wir suchen:
~> grep -n "function wp_check_filetype" wp-includes/functions.php
2034:function wp_check_filetype( $filename, $mimes = null ) {
Dann verändern:
// Zeile 2034:
function wp_check_filetype( $filename, $mimes = null ) {
// Accepted MIME types are set here as PCRE unless provided.
$mimes = ( is_array( $mimes ) ) ? $mimes : apply_filters( 'upload_mimes', array(
'jpg|jpeg|jpe' => 'image/jpeg',
'gif' => 'image/gif',
'png' => 'image/png',
'bmp' => 'image/bmp',
Dort einfach noch ein 'flv' => 'video/x-flv', einfügen und dann kann man auch wieder flv-Dateien in WordPress hochladen