我希望有人能指出这个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是如何不允许在系统中使用短代码的。 有人可以帮忙吗?