Most voted "processwire" questions
None
Learn more…2 questions
Sort by count of
-
1
votes1
answer269
viewsPlace Portuguese posting date using [processwire]
I am using processwire and to put the post creation date I used the following code <?php echo ( date("F j, Y ", $page->created). "at " . date("g:i A", $page->created)); ?></p>…
-
1
votes1
answer26
viewsHow to order processwire posts?
To sort the posts by date I did the following: $posts = $pages->find('template=blog-post, start='.$start .', limit=' . $limit . ',sort=-date'); When modifying the code sort=-date and sort=date…