您正在尝试获取数组值,因此会出现错误。尝试使用WP\\U查询,如:
global $post;
$projects = array(
\'post_type\' => \'projects\',
\'orderby\' => \'date\',
\'order\' => \'DESC\',
\'post_status\' => \'publish\'
);
$projects1= new WP_Query( $projects );
if ( $projects1->have_posts() ) :
while ( $projects1->have_posts() ) :
$projects1->the_post();
echo $post->post_name;
endwhile;
endif;