我犯了一个初学者的错误。我没有定义全局变量post。我为社区发布了完整的代码。可能对像我这样的人有用。
<?php
add_action( \'genesis_after_entry\', \'capitulos_curso\' );
function capitulos_curso(){
global $post;
$args = array(
\'post_type\' => \'curso\',
\'posts_per_page\' => -1,
\'post_parent\' => $post->ID,
\'order\' => \'ASC\',
\'orderby\' => \'menu_order\'
);
$parent = new WP_Query( $args );
?>
<?php if ( $parent->have_posts() ) : ?>
<ul class="parent-page">
<?php while ( $parent->have_posts() ) : $parent->the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
</ul>
<?php endwhile; ?>
<?php endif; wp_reset_postdata();} ?>
<?php
genesis();