It’s because you need to install first the debug bar plugin : http://fr.ww.wp.xz.cn/plugins/debug-bar/
Thread Starter
KubX
(@kubx)
i have found the solution :
<?php
// Add the new filter
add_filter('upload_mimes', 'addUploadMimes');
/**
* Adds new supported media types for upload.
*
* @see wp_check_filetype() or get_allowed_mime_types()
* @param array $mimes Array of mime types keyed by the file extension regex corresponding to those types.
* @return array
*/
function addUploadMimes($mimes)
{
$mimes = array_merge($mimes, array(
'kml' => 'application/octet-stream'
));
return $mimes;
}
?>
Thread Starter
KubX
(@kubx)
We have the same problem with ALL in one SEO Pack.
In the Admin, when you want to edit or to create an article, you can see the wysiwig editor,…
someone has an idea ?