You can auto-insert this property by patching the aggregator plugin. Edit the method 'insertProperties'.
Add this line to the repeating block of inserts:
Code: Select all
$sql = "INSERT INTO {$serendipity['dbPrefix']}entryproperties
(entryid, property, value)
VALUES ('$entryid', 'ep_no_frontpage', 'true')";
serendipity_db_query($sql);
Garvin