This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Calculate reading time on page save. | |
* Add this to your ready.php file. | |
* Uses a field called 'article_read_time' to store the value | |
* and the field 'page_content' as the readable content. | |
* You'll need to update those field names if yours are different. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace ProcessWire; | |
/** | |
* | |
* Import images from a CSV from WP (or wherever). | |
* In this case CSV has image path and page alias. | |
* | |
*/ | |
include("index.php"); |
OlderNewer