我已安装ACF Custom Field WYSIWYG 和Markdown Extra.
在里面functions.php
, 添加代码:
remove_filter( \'acf_the_content\', \'wpautop\' );
remove_filter( \'acf_the_content\', \'wptexturize\' );
add_filter( \'acf_the_content\', \'Markdown\' );
使用的每个自定义帖子字段
acf_the_content
将转换为降价。您也可以使用主要内容:
add_filter( \'the_content\', \'Markdown\' );