34 lines
756 B
PHP
34 lines
756 B
PHP
<?php
|
|
/**
|
|
* Add an element to fusion-builder.
|
|
*
|
|
* @package fusion-builder
|
|
* @since 1.0
|
|
*/
|
|
|
|
/**
|
|
* Map shortcode to Avada Builder
|
|
*
|
|
* @since 1.0
|
|
*/
|
|
function fusion_builder_element_next_page() {
|
|
fusion_builder_map(
|
|
[
|
|
'name' => esc_attr__( 'Next Page', 'fusion-builder' ),
|
|
'shortcode' => 'fusion_builder_next_page',
|
|
'hide_from_builder' => true,
|
|
'help_url' => 'https://avada.com/documentation/next-page-element/',
|
|
'params' => [
|
|
[
|
|
'type' => 'textfield',
|
|
'heading' => '',
|
|
'description' => '',
|
|
'param_name' => 'next_page_content',
|
|
'value' => '',
|
|
],
|
|
],
|
|
]
|
|
);
|
|
}
|
|
add_action( 'fusion_builder_before_init', 'fusion_builder_element_next_page' );
|