• Just what I needed.

    I customized the plugin to show the title of the page:

    after line 47, I added:

    $permalink = get_permalink( $page_id ); 
    
    $myTitle = '<a href="' . get_permalink($page_id) . '" rel="bookmark" title="' . strip_tags(get_the_title($page_id)) . '">' . get_the_title($page_id) . '</a>';

    and at the new line 67, I changed “$title” to $myTitle

    Now if I could just get the “read more” to work…

  • The topic ‘Does what it do’ is closed to new replies.