|
@@ 610-612 (lines=3) @@
|
| 607 |
|
$class = ' ' . esc_attr( $args['data']['class'] ); |
| 608 |
|
} |
| 609 |
|
$html = '<div id="' . $args['key'] . '" class="info-box' . $class . '">' . "\n"; |
| 610 |
|
if ( isset( $args['data']['name'] ) && ( $args['data']['name'] != '' ) ) { |
| 611 |
|
$html .= '<h3 class="title">' . esc_html( $args['data']['name'] ) . '</h3>' . "\n"; |
| 612 |
|
} |
| 613 |
|
if ( isset( $args['data']['description'] ) && ( $args['data']['description'] != '' ) ) { |
| 614 |
|
$html .= '<p>' . esc_html( $args['data']['description'] ) . '</p>' . "\n"; |
| 615 |
|
} |
|
@@ 613-615 (lines=3) @@
|
| 610 |
|
if ( isset( $args['data']['name'] ) && ( $args['data']['name'] != '' ) ) { |
| 611 |
|
$html .= '<h3 class="title">' . esc_html( $args['data']['name'] ) . '</h3>' . "\n"; |
| 612 |
|
} |
| 613 |
|
if ( isset( $args['data']['description'] ) && ( $args['data']['description'] != '' ) ) { |
| 614 |
|
$html .= '<p>' . esc_html( $args['data']['description'] ) . '</p>' . "\n"; |
| 615 |
|
} |
| 616 |
|
$html .= '</div>' . "\n"; |
| 617 |
|
|
| 618 |
|
echo $html; |