我在WP\\U查询中编写了一段代码,用于将字符串(内容)转换为数组(选项)。但这似乎是错误的!事实上,每次循环后,choices数组都是空的。但是str string不为null。如何将此数组处理为nutnull?任何帮助都将不胜感激。
$first_query = new WP_Query( $args );
while ($first_query->have_posts()) : $first_query->the_post();
the_title(); //echo the title
the_content(); //echo the content
$str = the_content();
$choices = explode("-",$str);
var_dump($choices);
endwhile;