• Hi all,
    I´m using this plugin and i really like it.
    So, my question is:
    I have this in my page
    [catlist id=2 thumbnail=yes thumbnail_class=entry-thumb wp-post-image excerpt=yes excerpt_size = 30 template=meutema numberposts=10 morelink="Ver Mais"]
    but the morelink doesnt show as you can see here

    The meutema.php theme file that i use is:

    <?php
    $lcp_display_output = '';
    $lcp_display_output .= '<ul class="lcp_catlist">';
    foreach ($this->catlist->get_categories_posts() as $single):
    $lcp_display_output .= '<li>';
    $lcp_display_output .= $this->get_thumbnail($single);
    $lcp_display_output .= '<h4>'.$this->get_post_title($single).'</h4>';
    $lcp_display_output .= '<div class="entry-excerpt">'.$this->get_excerpt($single).'</div>';
    $lcp_display_output .= '<br /><a class="readmore" href="'.get_permalink($single->ID).'">Continuar a Ler</a>';
    $lcp_display_output .= '</li>';
    endforeach;
    $lcp_display_output .= '</ul>';
    $this->lcp_output = $lcp_display_output;
    ?>

    What am i doing wrong?

    http://wordpress.org/extend/plugins/list-category-posts/

Viewing 1 replies (of 1 total)
  • I believe you have to put
    morelink=”Read More” posts_morelink=”Ver Mais”

    It’s the post_morelink that shows up on your site.

Viewing 1 replies (of 1 total)
  • The topic ‘More Link’ is closed to new replies.