We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec5add commit 5ff4602Copy full SHA for 5ff4602
src/global-settings.php
@@ -662,14 +662,14 @@ public function form_tag_selector( $tag ) {
662
}
663
664
public function form_paragraph_selector() {
665
- $is_apply_body_to_html = get_option( 'stackable_is_apply_body_to_html' ) ?? false;
666
$selectors = array_merge(
667
$this->form_tag_selector( 'p' ), // Core text
668
$this->form_tag_selector( 'li' ), // Core lists
669
$this->form_tag_selector( 'td' ) // Core table cells
670
);
671
672
// Add 'html' only if is_apply_body_to_html is true
+ $is_apply_body_to_html = get_option( 'stackable_is_apply_body_to_html' );
673
if ( $is_apply_body_to_html ) {
674
$selectors[] = 'html';
675
0 commit comments