Question:
How can I format dates using the Magpie plugin?
Answer:
The Magpie plugin uses {pubdate} to store the publication date. One method of formatting the date is to set your Magpie template to use PHP in Output mode and use the following code snippet:
<?php echo date("j M", strtotime('{pubdate}')); ?>
