fusion_builder_after

fusion_builder_after

This action hook is fired after main Avada Builder window. Can be used to append html markup or content after main builder window.
Copy to Clipboardfunction my_function() {
$content = ‘your content’;

echo $content;
}
add_action( ‘fusion_builder_after’, ‘my_function’ );​x 1function my_function() {2    $content = ‘your content’;3​4    echo $content;5}6add_action( ‘fusion_builder_after’, ‘my_function’ );