将 PHP 代码添加到在 woocommerce 支持的网站中使用 Visual Composer 创建的按钮
Add PHP code to a button created using Visual Composer in a woocommerce powered website
我使用可视化作曲器创建了一个表单。在此表单中,我想将 functions.php 中定义的 PHP 函数分配给提交按钮。
我该怎么做?
你可以这样做
// Your Shortcode to output the custom PHP in Visual Composer.
function my_vc_shortcode( $atts ) {
// Your Custom Php Code Here
return '<h2>This is my custom PHP output!</h2>';
}
add_shortcode( 'my_vc_php_output', 'my_vc_shortcode');
Check Source Code Here:
我使用可视化作曲器创建了一个表单。在此表单中,我想将 functions.php 中定义的 PHP 函数分配给提交按钮。
我该怎么做?
你可以这样做
// Your Shortcode to output the custom PHP in Visual Composer.
function my_vc_shortcode( $atts ) {
// Your Custom Php Code Here
return '<h2>This is my custom PHP output!</h2>';
}
add_shortcode( 'my_vc_php_output', 'my_vc_shortcode');
Check Source Code Here: