只需修改主查询:
// inside functions.php
function wpse47667_intercept_main_query( $wp )
{
// Modify the main query object
$wp->query_vars[\'custom_tax_name\'] = \'custom_term_slug\';
return $wp;
}
add_filter( \'parse_request\', \'wpse47667_intercept_main_query\' );
然后你必须更换
the_excerpt()
具有
the_content()
在您的
index.php/home.php/front-page.php
模板文件,以显示全文而不是摘录