PluginProbe
Elementor Website Builder – more than just a page builder / 3.34.1
Elementor Website Builder – more than just a page builder v3.34.1
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/base/element-base.php +0 -29 4.2.0-dev23.34.1 View file →
@@ -326,28 +326,8 @@
326 326
327 327 return $this->children;
328 328 }
329 329
330 - public function render_markdown(): string {
331 - $children = $this->get_children();
332 -
333 - if ( empty( $children ) ) {
334 - return '';
335 - }
336 -
337 - $parts = [];
338 -
339 - foreach ( $children as $child ) {
340 - $md = $child->render_markdown();
341 -
342 - if ( ! empty( trim( $md ) ) ) {
343 - $parts[] = $md;
344 - }
345 - }
346 -
347 - return implode( "\n\n", $parts );
348 - }
349 -
350 330 /**
351 331 * Get default arguments.
352 332 *
353 333 * Retrieve the element default arguments. Used to return all the default
@@ -461,16 +441,8 @@
461 441
462 442 return $this;
463 443 }
464 444
465 - public function reset_descendant_render_state(): void {
466 - $this->reset_render_state();
467 -
468 - foreach ( $this->get_children() as $child ) {
469 - $child->reset_descendant_render_state();
470 - }
471 - }
472 -
473 445 /**
474 446 * Print element.
475 447 *
476 448 * Used to generate the element final HTML on the frontend and the editor.
@@ -797,9 +769,8 @@
797 769 'elementor-element-' . $id,
798 770 ],
799 771 'data-id' => $id,
800 772 'data-element_type' => $this->get_type(),
801 - 'data-e-type' => $this->get_type(),
802 773 ] );
803 774
804 775 $class_settings = [];
805 776