Hi,
I just started yesterday testing pivotx as an alternative to wp to use on databaseless hosting.
And I'm having a little trouble here, is it possible to use php include or $homepage = file_get_contents in order to call external .php files?
I'm using it with wp to make it easy and quick to edit blogroll links from my blogs and I wonder if I can use the same method with pivotx blogs.
I use this:
<?php
$homepage = file_get_contents('http://mydomain.com/links.php');
echo $homepage;
?>
Or in alternative:
<?php include('http://mydomain.com/links.php'); ?>
I just tried both editing Page>links and editing _sub_sidebar.html without any success ...