Ticket #28928: 28928.patch
File 28928.patch, 542 bytes (added by , 11 years ago) |
---|
-
src/wp-content/themes/twentyfourteen/inc/featured-content.php
196 196 * @return array Array of sticky posts. 197 197 */ 198 198 public static function get_sticky_posts() { 199 $settings = self::get_setting();200 199 return array_slice( get_option( 'sticky_posts', array() ), 0, self::$max_posts ); 201 200 } 202 201