我尝试了几个echo命令,它们正确返回。
Breaking Statement
<?php
$gallery_ids = $wpdb->get_results(
"SELECT gid FROM ".$wpdb->prefix."ngg_gallery ORDER BY gid ASC", ARRAY_A);
?>
这会导致此语句之后的任何内容都不会显示,从而导致页面中断。
如果我这样做:
<?php
$custom_query = new WP_Query( \'posts_per_page=3&cat=1\' );
if ( $custom_query->have_posts() ) : while ( $custom_query->have_posts() ) : $custom_query->the_post(); ?>
<p id="title"><?php the_title(); ?></p>
<p id="small-date">Posted on: <?php the_time(\'F j, Y\') ?></p>
<?php the_excerpt(); ?>
<hr />
它工作得很好。所以我知道它可能需要复杂的PHP语句。
我很好奇为什么我之前的陈述会被打断。。