Marlon Creative
Marlon Creative

Reputation: 3846

Magento CMS pages — getting title from URL key/identifier?

Is there any way to get the title of a cms page, if you only know it's url key/identifier? For example, the about page (in the sample data) has a url key/identifier of 'about-magento-demo-store'. If that's the only information I had, how would I go about getting the page title from that? As in the faux code below:

$pageTitle = Mage::getModel('cms/page')->loadByAttribute('identifier', 'about-magento-demo-store')->getTitle();

I'd like to get a list of all CMS page titles, using just the url keys/identifiers.

I know you can get the current CMS page title using the following:

$pageTitle = Mage::getSingleton('cms/page')->getTitle();

Anyone any ideas?

Upvotes: 9

Views: 24619

Answers (2)

Guillermo
Guillermo

Reputation: 81

I made this solution to get URL-Key (Identifier) of a page:

<?php $pageTitle = Mage::getSingleton('cms/page')->getIdentifier(); ?>
<?php if ($pageTitle=='home'):?>

Upvotes: 8

Marlon Creative
Marlon Creative

Reputation: 3846

OK, figured it out myself using trial and error:

$pageTitle = Mage::getModel('cms/page')->load('about-magento-demo-store', 'identifier')->getTitle();

Upvotes: 21

Related Questions