I use the following code to call up the title of an article within the article
$title = $document->getTitle() . ' is a ' ; echo $title; echo " ";
It works, however it also calls up the city & category so what I end up with is >>City name: article title (article category)<< but I only want the title.
Is this something you have programmed that adds the information to the title in the database? Would you happen to have a snippet that would fix this?