• Hi guys, I was wondering if you had any advice for me. I’ve looked for awhile now and I can’t seem to find a way to do this. What i want to do is maintain a news page on one wordpress installation, and then push that out to all of my other wordpress sites. Do you have any sugestions on how to do this? Any plugins that come to mind?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter olthof

    (@olthof)

    Anyone out there with an idea? Any sugestion would be great!

    I don’t know any plugins that do this, but you certainly can use a custom “Page Templates” to the job.

    <?php
    /*
    Template Name: My News page
    */
    ?>
    <?php get_header(); ?>
    <div id="content" >
    <?php
    //echo file_get_contents("/path/to/news/file");
    //or use RSS parser
    ?>
    </div>
    <?php get_footer(); ?>

    Thread Starter olthof

    (@olthof)

    hey haochi, im currently not at work but when i get back to the site on monday ill try out your suggestion, thanks mate!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Pushing one wordpress page to multiple wordpress sites’ is closed to new replies.