Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数.phpファイル内に、カスタム投稿タイプのカスタムフィールドデータを取得する方法はありますか?渡された投稿IDに応じてデータが何であるか知りたいのですが?
<?php $id = YOUR_POST_ID; $meta = get_post_meta($id, 'custom_field_name', true); echo $meta; ?>