FAQ

Just another 仙台入門new weblog

­

メディアライブラリの概要

2009年 5月 21日 admin

メディアライブラリは、画像や動画、ドキュメントファイルなどを管理します。
この投稿では、メディアライブラリに関する簡単な説明を行います。

アップロード可能な、ファイルの種類や容量について、特に管理画面からの設定項目はありません。

wordPressで取り扱えるファイルタイプを詳細に調べたい人のための参考:

wordPress2.7.1 MIME types/wordPress2.7.1 filetypes

※管理者権限でログインしている場合は、csvなど、拡張子リストに含まれないファイルも、アップロードする事が可能です。詳細な条件は、アクセス権も含めて調べてみてください。

※wordPress MU の場合は、サイト管理・設定 サイト設定画面で、アップロード可能なファイルの種類、サイズ、アップロードメディアのサイズを管理する事ができます。
その他アップロードファイル以外に、ワードプレスのツール:インポート機能を使った場合も、テキストファイル形式で、ここに保存されます。

管理画面でできる事
それぞれのメディアやファイルには、キャプション 説明をつけることが出来ます。
説明には、htmlタグも使えます。

説明つきのページを表示できます。
キャプションは、画像のalt属性に利用され、説明は、画像と共に以下のように表示する事が出来ます。

表示例


参考まで:

wordPress2.7.1 MIME types

wp-includes/functions.phpに、
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',
		'tif|tiff' => 'image/tiff',
		'ico' => 'image/x-icon',
		'asf|asx|wax|wmv|wmx' => 'video/asf',
		'avi' => 'video/avi',
		'divx' => 'video/divx',
		'mov|qt' => 'video/quicktime',
		'mpeg|mpg|mpe|mp4' => 'video/mpeg',
		'txt|c|cc|h' => 'text/plain',
		'rtx' => 'text/richtext',
		'css' => 'text/css',
		'htm|html' => 'text/html',
		'mp3|m4a' => 'audio/mpeg',
		'ra|ram' => 'audio/x-realaudio',
		'wav' => 'audio/wav',
		'ogg' => 'audio/ogg',
		'mid|midi' => 'audio/midi',
		'wma' => 'audio/wma',
		'rtf' => 'application/rtf',
		'js' => 'application/javascript',
		'pdf' => 'application/pdf',
		'doc|docx' => 'application/msword',
		'pot|pps|ppt|pptx' => 'application/vnd.ms-powerpoint',
		'wri' => 'application/vnd.ms-write',
		'xla|xls|xlsx|xlt|xlw' => 'application/vnd.ms-excel',
		'mdb' => 'application/vnd.ms-access',
		'mpp' => 'application/vnd.ms-project',
		'swf' => 'application/x-shockwave-flash',
		'class' => 'application/java',
		'tar' => 'application/x-tar',
		'zip' => 'application/zip',
		'gz|gzip' => 'application/x-gzip',
		'exe' => 'application/x-msdownload',
		// openoffice formats
		'odt' => 'application/vnd.oasis.opendocument.text',
		'odp' => 'application/vnd.oasis.opendocument.presentation',
		'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
		'odg' => 'application/vnd.oasis.opendocument.graphics',
		'odc' => 'application/vnd.oasis.opendocument.chart',
		'odb' => 'application/vnd.oasis.opendocument.database',
		'odf' => 'application/vnd.oasis.opendocument.formula',
		)
	);

wordPress2.7.1 filetype

wp-includes/functions.php
function wp_ext2type( $ext )

$ext2type = apply_filters('ext2type', array(
		'audio' => array('aac','ac3','aif','aiff','mp1','mp2','mp3','m3a','m4a','m4b','ogg','ram','wav','wma'),
		'video' => array('asf','avi','divx','dv','mov','mpg','mpeg','mp4','mpv','ogm','qt','rm','vob','wmv'),
		'document' => array('doc','docx','pages','odt','rtf','pdf'),
		'spreadsheet' => array('xls','xlsx','numbers','ods'),
		'interactive' => array('ppt','pptx','key','odp','swf'),
		'text' => array('txt'),
		'archive' => array('tar','bz2','gz','cab','dmg','rar','sea','sit','sqx','zip'),
		'code' => array('css','html','php','js'),
	));
.
© FAQ Entries (RSS) and Comments (RSS)