wordpress投稿一覧とクイック編集にカスタムフィールドを追加
よく忘れるのでまとめ。
以下の方法で,カスタムフィールドを投稿の一覧およびクイック編集へ追加できる。
(テンプレートディレクトリ)/function.php
/**
* 一覧画面にカスタムフィールドを登録する
*/
function regist_list_posttype_customfields($defaults) {
// キー:カスタムフィールドキー, 値:和名
$defaults['link'] = 'リンクURL';
$defaults['popup'] = 'リンク後のウィンドウ';
// JSのロード
wp_enqueue_script(
'edit_quick', // ハンドル
get_bloginfo('template_url')
.'/list_posttype_customfields.js', // JSファイル
array('jquery'), // 先にロードされるべきハンドル
filemtime(dirname( __FILE__ ).'/list_posttype_customfields.js'), // バージョン
// (※数字を指定してもよいが更新日時を取得すると楽)
false // true: 
