Thanks for the screen shots..
we’ve added the following code to our page sidebar-overviews.php
<?php // LEFT SIDEBAR ?>
<div id="leftsidebar">
<ul>
<li><h2>FEATURES</h2>
<ul>
<ul>
<?php
require_once(WP_PLUGIN_DIR.'/custom-post-type-tree/the_tree.php');
customPostTypeTree::viewChildren($customPostTypeTree);
while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
and the children posts are displaying but only the name. We’d like to be able to include the permalink as well.
I cant see from the screenshots how we can change this to include the permalinks?