Uname: Linux webm001.cluster110.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 7.3.33 [ PHP INFO ] PHP os: Linux
Server Ip: 213.186.33.19
Your Ip: 216.73.216.124
User: creationoo (224166) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : fusion-row.php
<?php

/**
 * Row shortcode
 *
 * @param array  $atts    The attributes array.
 * @param string $content The content.
 * @return string
 */
function fusion_builder_row( $atts, $content = '' ) {
	extract( shortcode_atts( array(
			'id'    => '',
			'class' => '',
		), $atts
	) );

	return '<div' . ( '' !== $id ? ' id="' . esc_attr( $id ) . '"' : '' ) . ' class="fusion-builder-row fusion-row ' . esc_attr( $class ) . ( '' !== $class ? esc_attr( $class ) : '' ) . '">' . do_shortcode( fusion_builder_fix_shortcodes( $content ) ) . '</div>';
}
add_shortcode( 'fusion_builder_row', 'fusion_builder_row' );


/**
 * Map Row shortcode to Fusion Builder
 */
function fusion_element_row() {
	fusion_builder_map( array(
		'name'              => esc_attr__( 'Row', 'fusion-builder' ),
		'shortcode'         => 'fusion_builder_row',
		'hide_from_builder' => true,
	) );
}
add_action( 'fusion_builder_before_init', 'fusion_element_row' );
© 2026 MAINHACK