我在这方面有很多麻烦。我在使用<?php query_posts( array( \'post__not_in\' => get_option( \'sticky_posts\' ), \'paged\' => get_query_var( \'paged\' ) ) ); ?>
从我的主页上的主查询中排除帖子,因为滑块中使用了胶粘物。我正在为wordpress制作这个主题。org和我被告知不推荐这样做。然后我尝试将其添加到我的函数中。php但无济于事:
/**
* Excluding sticky posts from home page. Sticky posts are in a slider.
*
* @since 0.1
*/
function essential_exclude_sticky( $query ) {
/* Exclude if is home and is main query. */
if ( is_home() && $query->is_main_query() )
$query->set( \'ignore_sticky_posts\', true );
}
`你知道我做错了什么吗?