|
@@ 1197-1199 (lines=3) @@
|
| 1194 |
|
} |
| 1195 |
|
|
| 1196 |
|
// if preview show a placeholder if empty |
| 1197 |
|
if ( $this->is_preview() && $output == '' ) { |
| 1198 |
|
$output = $this->preview_placeholder_text( "[{" . $this->base_id . "}]" ); |
| 1199 |
|
} |
| 1200 |
|
|
| 1201 |
|
return $output; |
| 1202 |
|
} |
|
@@ 1883-1886 (lines=4) @@
|
| 1880 |
|
echo ! empty( $this->options['widget_ops']['classname'] ) ? "</span>" : ''; |
| 1881 |
|
} |
| 1882 |
|
echo $after_widget; |
| 1883 |
|
} elseif ( $this->is_preview() && $output == '' ) {// if preview show a placeholder if empty |
| 1884 |
|
$output = $this->preview_placeholder_text( "{{" . $this->base_id . "}}" ); |
| 1885 |
|
echo $output; |
| 1886 |
|
} |
| 1887 |
|
} |
| 1888 |
|
|
| 1889 |
|
/** |