This action hook is fired after the Avada Builder layout UI. Can be used to append html markup or content after builder layout UI.
Copy to Clipboardfunction my_function() {
$content = 'your content';
echo $content;
}
add_action( 'fusion_builder_after_content', 'my_function' );x 1function my_function() {2 $content = 'your content';34 echo $content;5}6add_action( 'fusion_builder_after_content', 'my_function' );