pagelines_register_section('BasePullQuote', 'pullquote', null, array('child' => true) );
However, this was happening too late in the process and any edits to the meta options for posts were not being registered. Looking at the code I think this is a better way to do it:
// in child theme functions.php
// needs to happen before core.init.php include
add_action('pagelines_register_sections', 'my_register_sections');
/* Hello! First, lets load the PageLines core so we have access to the functions */
require_once(TEMPLATEPATH . "/core/core.init.php");
// ...
function my_register_sections() {
pagelines_register_section('BasePullQuote', 'pullquote', null, array('child' => true) );
//pagelines_register_section('MyOtherSection', 'myothersection', null, array('child' => true) );
}









