Forums

[resolved] [Plugin: Excerpts from children] links to child pages broken (1 post)

  1. mmcginnis
    Member
    Posted 2 years ago #

    If you run into the issue of links to your child pages being broken, it may be because you're not running WordPress in the root directory and this plugin doesn't account for that. Here is the fix:

    In excerpts-from-children.php, change line 43 from:

    $output .= '<p class="read-more"><a href="/' . make_clickable(get_page_uri($child->ID)) . '">Read more &raquo;</a></p>';

    to:

    $output .= '<p class="read-more"><a href="' . get_bloginfo('url') . '/'. make_clickable(get_page_uri($child->ID)) . '">Read more &raquo;</a></p>';

    http://wordpress.org/extend/plugins/excerpts-from-children/

Topic Closed

This topic has been closed to new replies.

About this Topic