Magento 1.9 CMS Pages – Get Specific or Any CMS Page Title

cms-pagesmagento-1.9page-title

I would like to retrieve a specific page name in my frontend phtml on magento v1.9.2.4. I have found many ways to retrieve 'current' page title, such as thoses questions posted on stackoverflow :

but this is not what I want. I need to show this title in a 'call-to-action' fashion which will be used elsewhere on the website.

EDIT 2017-01-04 – I found a solution, please view my post below

Best Answer

I found a solution with the identifier there is the easiest way to do it:

<?php echo Mage::getModel('cms/page')->load('PAGEIDENTIFIERHERE', 'identifier')->getTitle(); ?>