blog item: show posts with future publication date?
Hi,
is it possible with the blog item to list posts where the publication date is in the future?
Thx in advance
Markus
Hi,
is it possible with the blog item to list posts where the publication date is in the future?
Thx in advance
Markus
Comments
Hi,
Do you mean posts that are scheduled to post and are not published yet?
No, there is no option to show them with the blog element.
Best regards
i found out how to do this. it's not betheme specific though, but related to wordpress.
you can put this in the functions.php (eg. in the child theme):
function show_future_posts($query) {
$query->set('post_status', array('publish', 'future'));
}
add_action('pre_get_posts', 'show_future_posts');
Sorry, but we do not provide help with file customization, so if you do not know how to do it, you should contact your web developer.
https://support.muffingroup.com/documentation/installation-updates/#child-theme
Best regards
you are welcome to read my previous comment once again ;-)
I understood that you asking for help to implement this feature.
If you handled it, great to see that.
Best regards