Visual Composer插件上的PHP代码

时间:2016-04-13 作者:linda dixon

我想在我的页面中添加一些php和html代码,但我不能使用Visual Composer,我可以选择“原始html”框,但它根本不会呈现php,只呈现html。

你们知道我怎么做吗??或者是否有解决方案?

1 个回复
SO网友:linda dixon

因此,我在Pieter Goosen的帮助下找到了答案,我想与您分享:

一个好的方法是创建一个短代码。

要做到这一点,只需转到模板函数。php文件并创建如下示例所示的函数:

function shortcode_hello( $atts ){
  $time = ( date(\'G\') < 9 ) ? "good morning" : "good day";
    return "Hello, and " . $time . \', my name is Linda\';
}
add_shortcode( \'hello\', \'shortcode_hello\' );
现在你要做的就是[hello] 页面生成器上的快捷代码(此处为Visual composer)。