我正试图通过一个名为sort\\u by的字段订购一个名为“Teachers”的自定义帖子类型。我不知道为什么这不起作用。
这是我的代码:
$args = array( \'post_type\' => \'teacher\', \'posts_per_page\' => 30, \'order_by\' => \'sort_by\' ,\'order\'=>\'ASC\' );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
echo \'<div class="entry-content"><h2 class="teachers">\';
the_title();
echo \'</h2>\';
the_excerpt();
echo \'</div>\';
endwhile;