Page meta - adampatterson/Tentacle GitHub Wiki

Page meta is save with every entry, this includes the Scaffolded Data.

Categories and Tags are stored independently from page meta due to their relations to content.

At the moment Breadcrumb title, Meta Keywords, Meta Description are standard and can be called much the same way you would as scaffolded data.

Using:

$post = load::model ( 'page' );
$page_meta = $post->get_page_meta( $post->id );

The out put of $post_meta would be:

Meta Object
(
    [bread_crumb] => 
    [meta_keywords] => 
    [meta_description] => 
)

To access the data you can use: <?= $post_meta->bread_crumb ?>