我希望有人能指出这个 WordPress 主题出了什么问题。我没有构建主题,虽然我知道它使用 Genesis。
http://bloomfire.staging.wpengine.com/partners-new
问题出在“推荐合作伙伴”选项上(如果您单击它,它本质上会显示一个不同的选项卡。但是如果您向下滚动,您会看到该选项卡没有显示短代码,这只是 Gravity Forms 中的一个简单联系表.
我尝试将以下代码添加到 functions.php 文件中,但它被完全忽略了:
add_filter( 'comment_text', 'shortcode_unautop');
add_filter( 'comment_text', 'do_shortcode' );
global $post;
$content = get_post_meta( $post->ID, 'solution-tab-3', true );
echo do_shortcode( $content );
add_filter( 'get_post_meta', 'shortcode_unautop');
add_filter( 'get_post_meta', 'do_shortcode');
我不明白 Genesis 如何不允许在系统内使用短代码。任何人都可以帮忙吗?