Questions tagged as 'processwire'

1
answer

How to sort postings in processwire?

To sort the posts by date I did the following: $posts = $pages->find('template=blog-post, start='.$start .', limit=' . $limit . ',sort=-date'); When I modify the code sort=-date and sort=date nothing is changed so I do not...
asked by 05.10.2015 / 10:37
1
answer

Post date of the Portuguese post using [processwire] [duplicate]

I'm 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> However this code does show the date in Eng...
asked by 28.09.2015 / 13:22