調査したところ、Check Copy Contents が the_content()
部分を改変するのが原因でした。目次だけでなく、デフォルトの見出しのデザインや余白なども全部抜けてしまうようです。
子テーマを作成し、子テーマの functions.php
に下記のコードを追加してみてください。
if ( class_exists( 'CheckCopyContents' ) ) {
add_filter( 'the_content', function( $content ) {
return str_replace( '<div class="theContentWrap-ccc">', '<div class="theContentWrap-ccc c-entry__content">', $content );
}, 9999 );
}