首先,不要使用query\\u posts,而是使用WP\\u query。要显示每个页面的50个carachters:
<?php
$args = array(
\'post_type\' => \'page\',
\'post_parent\' => \'6\',
\'order\'=> \'DESC\'
);
$pages_returned = new WP_Query($args);
while ( $pages_returned->have_posts()): $pages_returned->the_post(); ?>
<div class="page-excerpt">
<h1><?php the_title(); ?></h1>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
现在是函数的50个字符限制。php添加
function custom_excerpt_length( $length ) {
return 50;
}
add_filter( \'excerpt_length\', \'custom_excerpt_length\', 999 );
应该是这样。