How to plan blog articles

Hello,

I have a question and I can’t find an answer…

Is there a way to plan the publication of blog articles ???

It’s very useful :smile:

Thanks

Cédric

Check out this thread: Date field (online from, to)

Does that solve your question?

I need to try. It seems to be possible with this solution. Thanks fabian.

Hi,
you have to modify only the $articles variable in blog.php.

$articles = $pages->find('blog')
                        ->children()
                        ->visible()
                        ->filterBy('tags', $tag, ',')
                        ->filterBy('date', '<=', time())
                        ->flip()
                        ->paginate(10);

And the date-field looks like

----
date: 21-03-2015 19:51
----
1 Like

Hi,

I tried (quickly) with the blogprint-master plugin and it works great.

Thank you very much for your support :smile:

1 Like

(excited to see someone who is using my plugin :smile: )