This is actually a Coldfusion page on Suncook, being edited with WordPress on sites.keene.edu. Here’s how.
On Suncook, I have a test folder at /test/wpress/.
In the folder there is a file called gettext.cfm, created many moons ago by Mike Caulfield so the Development people could edit their pages with WordPress. gettext.cfm grabs a WordPress page by its URL and page_id and outputs the content on the CF page on Suncook. You just need to do two things.
1. In application.cfm, you simply have to set the URL variable with the URL of the WordPress site you want to use to edit:
<cfset request.wordpressurl = “http://sites.keene.edu/test1/”>
2. Then each page on Suncook that will be edited with WordPress just needs to have the following CF bootstrappy type code where the request.id is passed the page’s ID number:
<cfset request.id=26>
<CF_GETTEXT>
5. Then the user can simply edit that page in WordPress.