Dear Kleo Team,
thank you for your great work. The theme works very well in terms of aesthetics and functionality.
One small problem occurs when using essential grids which caues the feed to not work properly! I want to change the post order. Therefore, I use either
COPY CODE
$args = array(
'orderby' => 'title menu_order',
'order' => 'ASC',
);
$query = new WP_Query( $args );
or this
COPY CODE
$args = array(
'orderby' => 'random',
);
$query = new WP_Query( $args );
Both do not result in any change. I would appreciate your support on this as the Essential Grid was in the package. I want to radomize posts; alternatively I would rank the from most recent to latest. Thank you for your help.