• 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://www.ads-software.com/plugins/bknewsticker/

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