I admit, that this is not the best way, but it is a very simple way to add a SPARQL-Endpoint to a Wordpress-Blog
- Get Triplify and the Triplify Configuration for Wordpress. After installing and configuring all data of your blog are accessible as triples.
- Get ARC, the “Easy RDF and SPARQL for LAMP systems”. Install and configure it.
- Load your blog-data into the ARC-store with a simple
LOAD <http://contentfree.de/triplify>at the ARC-SPARQL-endpoint.
That’s it. Now you can query your blog with statments like
PREFIX dc: <http://purl.org/dc/elements/1.1/> .
SELECT ?s ?o WHERE {
?s dc:title ?o .
}
LIMIT 10






