My Snow Monkey プラグイン、もしくは子テーマの functions.php
に下記のコードを貼り付けてみてください!
(通常のセクションブロックだけでなく、背景画像/動画あり、ブロークングリッド、サイド見出しも対象にするためにちょっとコードが長いです…)
add_filter(
'inc2734_wp_contents_outline_args',
function( $attributes ) {
$attributes['selector'] = implode(
',',
[
$attributes['selector'],
'.smb-section__inner > .c-container',
'.smb-section-break-the-grid__content',
'.smb-section-side-heading > .smb-section__inner > .c-container > .c-row > .c-row__col:first-child',
]
);
return $attributes;
}
);