Integrate Actinic / Wordpress

If you want to show your wordpress posts it's fairly easy to integrate wordpress into Actinic, something like this will do it:-

THIS ASSUMES YOU HAVE WORDPRESS INSTALLED UNDER A DIRECTORY CALLED BLOG AND ACTINIC RUNNING FROM THE ROOT DIRECTORY, the code works for actinic brochures pages.

Create a new brochure page called 'blog'
Make sure you rename the page to 'mypage.php' (change mypage to whatever you want, just make sure it finishes in .php

Create a fragment and again call it Blog
Paste the code below into the fragment
Upload, be amazed and praise Me!

!!< include("../blog/wp-blog-header.php");?>
<?php query_posts('showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_author(); ?>
<?php the_excerpt(); ?>
<?php endwhile;?>
>!!

NOTE: Dependent on your setup you may need to change the path to wp-blog-header.php.

This is a very basic integration. If you know php/mysql/wordpress you can display as much as you want. A good session on Google should point you in the right direction though. It obviously will require some styling too.

The above is an exerpt from a post in the Actinic Community by Dave Finlayson.

The full thread can be found here