<?php
global $wp_query;
$postID = $wp_query->post->ID;
$customfield = get_post_meta($postID, 'フィールド名', true);
echo $customfield;
?>
参考: グローバル変数 – WordPress Codex 日本語版
<?php
global $wp_query;
if (get_post_meta(get_the_ID(), 'カスタムフィールド名', true)) {
$postID = $wp_query->post->ID;
echo '<p>' . get_post_meta($postID, 'カスタムフィールド名', true) . '</p>';
}
wp_reset_query();
?>
コメントを残す