PluginProbe
Elementor Website Builder – more than just a page builder / 4.2.2
Elementor Website Builder – more than just a page builder v4.2.2
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 4.0.7 All 451 releases
← All changes | includes/widgets/shortcode.php +10 -0 4.0.94.2.2 View file →
@@ -165,5 +165,15 @@
165 165 * @since 2.9.0
166 166 * @access protected
167 167 */
168 168 protected function content_template() {}
169 +
170 + public function render_markdown(): string {
171 + $settings = $this->get_settings_for_display();
172 + $shortcode = $settings['shortcode'] ?? '';
173 + if ( empty( $shortcode ) ) {
174 + return '';
175 + }
176 + $output = do_shortcode( $shortcode );
177 + return Utils::html_to_plain_text( $output );
178 + }
169 179 }