自定义首页

<?php
query_posts($query_string.&cat=-10); while ( have_posts() ) : the_post(); echo '<h2>'; the_title(); echo '</h2>'; the_content(); endwhile; ?>
<?php
if ( have_posts() ) :
        query_posts($query_string.&cat=-10);
	while ( have_posts() ) : the_post();
		// Your loop code
	endwhile;
else :
	echo wpautop( 'Sorry, no posts were found' );
endif;
?>
原文地址:https://www.cnblogs.com/kedarui/p/3621919.html