Having implemented a fix for #166 and applied a similar fix to Gutenberg ( to fix further complications to the reported in 26593 ) I used the [bw_list] shortcode to list the posts that would be listed by the core/query.
The results were different for the nested posts.
Explanation
This is because the [bw_list] shortcode is attempting to dynamically determine the exclude= parameter but the core/query has it hard coded.
Workaround
Hardcode the exclude= parameter in each post.
Having implemented a fix for #166 and applied a similar fix to Gutenberg ( to fix further complications to the reported in 26593 ) I used the
[bw_list]shortcode to list the posts that would be listed by thecore/query.The results were different for the nested posts.
Explanation
This is because the
[bw_list]shortcode is attempting to dynamically determine theexclude=parameter but thecore/queryhas it hard coded.Workaround
Hardcode the
exclude=parameter in each post.