Answer the question
In order to leave comments, you need to log in
WordPress. How to sort query from database?
There is this code:
<?php
#html<?
// WP_Query arguments
$args = array (
'post_parent' => '371',
'post_type' => 'page',
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
#?>html
Answer the question
In order to leave comments, you need to log in
order, orderby https://codex.wordpress.org/Class_Reference/WP_Que...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question