在您的页面模板中,最好是在endwhile(如果有)之后
<?php
$theQuery = strtolower(trim(get_the_title()));
$args = (\'s=\'.$theQuery .\'&showposts=5\');
$search_query = new WP_Query($args);
if ($search_query->have_posts()) :
while ($search_query->have_posts()) :
$search_query->the_post();
//do your stuff
endwhile;
endif;
?>