从自定义字段执行短代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从自定义字段执行短代码相关的知识,希望对你有一定的参考价值。
This snippet will enable you to add shortcode to a wordpress custom field. Normally wordpress does not run shortcodes that you put into a custom field. Just put this code into whatever page you are displaying the results of the shortcode, and change the 'your_custom_field_here' to the name of your custom field.
<?php echo apply_filters('the_content', get_post_meta($post->ID, 'your_custom_field_here', true)); ?>
以上是关于从自定义字段执行短代码的主要内容,如果未能解决你的问题,请参考以下文章
从 AFC 自定义字段变量中获取 ID 的 foogallery php 短代码不显示
Wordpress ACF 字段如何从自定义帖子类型中获取选项
如何从自定义列表视图中获取选定项目并在 toast 消息中打印?