Title: Recent post fix
Last modified: August 30, 2016

---

# Recent post fix

 *  [gijsisgaaf](https://wordpress.org/support/users/gijsisgaaf/)
 * (@gijsisgaaf)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/recent-post-fix/)
 * Hi There,
 * I had some problems with your plugin, it wasn’t showing the latest posts in the
   chosen category. I played around a bit in the source code and came across this:
 *     ```
       case 'recent':
       		$posts = get_posts(
       			array(
       				'numberposts' => TICKER_MAX_INT,
       				'orderby' => 'post_date',
       				'suppress_filters' => 0,
       				)
       			);
       		break;
       ```
   
 * I changed this to:
 *     ```
       case 'recent':
       		$posts = get_posts(
       			array(
       				'numberposts' => TICKER_MAX_INT,
       				'orderby' => 'date',
       				'order'            => 'DESC',
       				'suppress_filters' => 0,
       				)
       			);
       		break;
       ```
   
 * and all the latest posts showed up.
 * Grtz,
 * Gijs
 * [https://wordpress.org/plugins/bknewsticker/](https://wordpress.org/plugins/bknewsticker/)

The topic ‘Recent post fix’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/bknewsticker_3d0f11.svg)
 * [Bknewsticker](https://wordpress.org/plugins/bknewsticker/)
 * [Support Threads](https://wordpress.org/support/plugin/bknewsticker/)
 * [Active Topics](https://wordpress.org/support/plugin/bknewsticker/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bknewsticker/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bknewsticker/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [gijsisgaaf](https://wordpress.org/support/users/gijsisgaaf/)
 * Last activity: [10 years, 11 months ago](https://wordpress.org/support/topic/recent-post-fix/)
 * Status: not resolved