Display Meta Description From Another Page

Permalink
I am making a custom menu, and I need to know how I can display the meta description from another page? I know the code for how to do it for the CURRENT page, but not for another one. What code would I use to do this?

PineCreativeLabs
 
jero replied on at Permalink Reply
jero
Not sure how you're going to decide which other page to pull the description from, but once you're over that little hurdle use one of these to get the collection object:

$_c=Page::getByID($cid);
$_c=Page::getByPath($cpath); # leading / on cpath


and then get your attribute value like this:

$meta=$_c->getCollectionAttributeValue('meta_description');