'; } } add_action( 'wp_head', 'amazorize_pingback_header' ); /** * exclude sticky posts from homepage */ function amazorize_remove_posts_from_home_page( $query ) { // sure we're were we want to be. if ( is_home() && $query->is_main_query() ) { $query->set( 'ignore_sticky_posts', true ); } } add_action( 'pre_get_posts', 'amazorize_remove_posts_from_home_page' );