let xxxy = document.getElementsByClassName("is-flex-container columns-3 alignwide wp-block-post-template is-layout-flow");
console.log(xxxy.children);
I am editing a WordPress theme and am trying to access the li children of a ul element. while logging out the ul parent (accessed as you can see in the first line of code) returns a node list with 1 element, as expected, logging out the children gives undefined (last line). what could be causing this?