diff --git tests/phpunit/tests/query/stickies.php tests/phpunit/tests/query/stickies.php
index 73ff746..eb0dca4 100644
--- tests/phpunit/tests/query/stickies.php
+++ tests/phpunit/tests/query/stickies.php
@@ -105,6 +105,39 @@ class Tests_Query_Stickies extends WP_UnitTestCase {
 		$this->assertNotContains( self::$posts[8], wp_list_pluck( $q->posts, 'ID' ) );
 	}
 
+	/**
+	 * @group 27282
+	 */
+	public function test_stickies_not_included_in_initial_query_should_not_increase_number_of_results_returned() {
+		$this->go_to( '/' );
+		$q = $GLOBALS['wp_query'];
+		$this->assertEquals( $q->get( 'posts_per_page' ), count( $q->posts ) );
+	}
+
+	/**
+	 * @group 27282
+	 */
+	public function test_stickies_should_offset_starting_post_on_subsequent_pages() {
+		$this->go_to( '/?paged=2' );
+		$q = $GLOBALS['wp_query'];
+
+		/*
+		 * There are three stickies. Two (2 and 8) naturally appear on the first page.
+		 * The third (14) pads the first page by 1, offsetting the second page by 1.
+		 */
+		$this->assertEquals( self::$posts[9], $q->posts[0]->ID );
+	}
+
+	/**
+	 * @group 27282
+	 */
+	public function test_stickies_should_not_appear_in_their_normal_order_on_inner_pages() {
+		$this->go_to( '/?paged=2' );
+		$q = $GLOBALS['wp_query'];
+
+		$this->assertNotContains( self::$posts[14], wp_list_pluck( $q->posts, 'ID' ) );
+	}
+
 	public function set_ignore_sticky_posts( $q ) {
 		$q->set( 'ignore_sticky_posts', true );
 	}
