Custom shortcode with PHP in Muffin Builder
Hello, I need to write some custom PHP code in muffin builder.
In other builders I can do it via shortcode i.e. for Elementor I go to functions.php of my theme and write
function wpc_elementor_shortcode( $atts ) {
some php code
}
add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');
and I can use it as a regular shortcode.
Is this possible in betheme and muffin builder?
Thank you
Comments