Elementor #1096

// functions.php
function include_my_php($atts) {
ob_start();
include(‘path/to/your/php/file.php’);
return ob_get_clean();
}
add_shortcode(‘my_php’, ‘include_my_php’);

PAGE TOP