Close

2019年6月7日(金)

カスタムフィールドで使用できるキーを調べる

調べたいフィールドを下記要領で指定する。

 <?php                       
$s_file_object = get_field ( 'file01' );
print_r($s_file_object);      
?>

”ファイル”のキーを出力結果
[ key ] => 値 keyの部分がキーになります。

Array ( 
[ID] => 38 
[id] => 38 
[title] => HPバックアップ管理表 
[filename] => HPバックアップ管理表.docx 
[filesize] => 14810 
[url] => http://localhost/nben_mem/wp-content/uploads/2019/06/HPバックアップ管理表.docx 
[link] => http://localhost/nben_mem/download/37/%ef%bd%88%ef%bd%90%e3%83%90%e3%83%83%e3%82%af%e3%82%a2%e3%83%83%e3%83%97%e7%ae%a1%e7%90%86%e8%a1%a8-2 
[alt] => 
[author] => 1 
[description] => 説明 
 => キャプション 
[name] => %ef%bd%88%ef%bd%90%e3%83%90%e3%83%83%e3%82%af%e3%82%a2%e3%83%83%e3%83%97%e7%ae%a1%e7%90%86%e8%a1%a8-2 [status] => inherit [uploaded_to] => 37 
[date] => 2019-06-05 07:48:37 
[modified] => 2019-06-06 07:04:40 
[menu_order] => 0 
[mime_type] => application/vnd.openxmlformats-officedocument.wordprocessingml.document 
[type] => application 
[subtype] => vnd.openxmlformats-officedocument.wordprocessingml.document 
[icon] => http://localhost/nben_mem/wp-includes/images/media/document.png )
PAGE TOP