Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

[Closed] Recent post duration time

4 Posts
3 Users
0 Reactions
828 Views
Posts: 8
Topic starter
(@jajimenez)
Active Member
Joined: 2 years 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: 1522
(@tutrix)
Noble Member
Joined: 5 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: 2 years ago

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

BlackRaz
Posts: 396
Admin
(@blackraz)
Contributor
Joined: 9 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; } );