fusion_builder_before

fusion_builder_before

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

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

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注