Notifications
Clear all

[Closed] Recent post duration time

4 Posts
3 Users
0 Reactions
479 Views
Posts: 8
Topic starter
(@jajimenez)
Active Member
Joined: 1 year ago

I have a question, the page where the recent threads are shown, what criteria does it have? If a few weeks pass without any recent posts, it remains empty. Can the duration be modified?

3 Replies
Tutrix
Posts: 1436
(@tutrix)
Noble Member
Joined: 4 years ago

@jajimenez

open themes / 2022 / recent.php and edit the value 30

see code below

$days = apply_filters( 'wpforo_recent_posts_limit', 30 );
Posts: 8
Topic starter
(@jajimenez)
Active Member
Joined: 1 year ago

Thanks for the help, I understand then that the default value is 30 days.

BlackRaz
Posts: 406
Admin
(@blackraz)
Contributor
Joined: 8 years ago

Or you can just add this code to your https://wordpress.org/plugins/code-snippets/

add_filter( 'wpforo_recent_posts_limit', function(){ return 90; } );