• Resolved dandr69

    (@dandr69)


    How do I limit related posts to last year?

    There is no option !

    “limit the search of related posts by date or number”

    • This topic was modified 8 years ago by dandr69.
Viewing 1 replies (of 1 total)
  • Plugin Author keesiemeijer

    (@keesiemeijer)

    Hi

    That option is not (yet) available in the widget. In the shortcode you can use this.

    
    [related_posts_by_tax limit_month="12"]
    

    For the widget use this in your (child) theme’s functions.php file:

    
    add_filter( 'related_posts_by_taxonomy_widget_args', 'my_widget_filter', 10, 2 );
    function my_widget_filter( $args, $instance ) {
     
        $args['limit_month'] = 12;
         
        return $args;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Limit the search of related posts by date or number?’ is closed to new replies.