fusion_builder_before_content

fusion_builder_before_content

This action hook is fired before Avada Builder layout UI. Can be used to prepend html markup or content before builder layout UI.
Copy to Clipboardfunction my_function() {
$content = ‘your content’;

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