PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.1
Elementor Website Builder – more than just a page builder v4.2.1
4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 All 452 releases
← All changes | includes/widgets/google-maps.php +9 -0 4.0.94.2.1 View file →
@@ -324,5 +324,14 @@
324 324 * @since 2.9.0
325 325 * @access protected
326 326 */
327 327 protected function content_template() {}
328 +
329 + public function render_markdown(): string {
330 + $settings = $this->get_settings_for_display();
331 + $address = Utils::html_to_plain_text( $settings['address'] ?? '' );
332 + if ( empty( $address ) ) {
333 + return '';
334 + }
335 + return '[Map: ' . $address . '](https://maps.google.com/maps?q=' . rawurlencode( $address ) . ')';
336 + }
328 337 }