jflepp / picofiletime
A plugin for Pico to set the page creation date from the last write of the file
0.0.7
2018-11-28 07:20 UTC
Requires (Dev)
- phpunit/phpunit: ^7.4
This package is auto-updated.
Last update: 2025-05-29 01:24:06 UTC
README
A pico plugin to take the creation date from the file last write time.
Features 100% test coverage (without wrappers and connectors)
Pull requests welcome!
Installation
Install via composer composer require jflepp/picofiletime
Usage in themes
{% for page in pages %} <li>{{ page.id }} - <a href="{{ page.url }}">{{ page.url }}</a> - {{ page.meta.creation_date }}</li> {% endfor %}
{{ current_page.meta.creation_date }}
Configuration
PicoFileTime provides no additional configuration, but you can use Picos inbuilt configuration to sort pages according to their creation date:
pages_order_by_meta: creation_date pages_order_by: meta pages_order: desc