ACF ACFの入力欄にショートコードを入れて展開させたい
https://www.sensitivity.jp/wordpress/advanced-custom-fields%E3%81%A7%E3%82%B7%E3%83%A7%E3%83%BC%E3%83%88%E3%82%B3%E3%83%BC%E3%83%89%E3%82%92%E5%85%A5%E5%8A%9B/
https://midorinz.com/app/2019/04/06/advanced-custom-field%e3%81%a7%e3%82%b7%e3%83%a7%e3%83%bc%e3%83%88%e3%82%b3%e3%83%bc%e3%83%89%e3%82%92%e5%85%a5%e5%8a%9b%e3%81%97%e3%81%9f%e3%81%84/
ありがたいコード
<?php
echo apply_filters('the_content', get_post_meta($post->ID, 'カスタムフィールド名', true));
?>
普通にいれるとカッコ付きのままでてくる
展開させるには上記コードでやるとok
すごい簡単でありがたい!
PR