カスタムフィールドの内容を取得
- Category: WordPress関係
function my_get_meta($key){
global $post;
return get_post_meta($post->ID,$key,true);
}
$keyはカスタムフィールドのフィールド名。値を取得するだけなので、そのまま表示したい場合はechoする。
function my_get_meta($key){
global $post;
return get_post_meta($post->ID,$key,true);
}
$keyはカスタムフィールドのフィールド名。値を取得するだけなので、そのまま表示したい場合はechoする。