• Resolved polpaulin

    (@polpaulin)


    Hi

    when I click on articles, categories,calendar or keywords any widgets on the right I get a list of articles and I have to click on the title to read one of them
    how can I display a list of full articles ? not to have to click to read them ?

    thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter polpaulin

    (@polpaulin)

    I solved it in that tway

    in wp-config.php — > define(‘SHOW_CONTENT’, 1);

    in the pages displaying content

    <?php
    if(SHOW_CONTENT == 1){
    echo ‘<div class=”entry-content”>’;
    the_content();
    }
    else{
    echo ‘<div class=”entry-summary”>’;
    the_excerpt( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘ymages’ ) );
    }
    ?>
    </div><!– .entry-summary –>

    Alwyn Botha

    (@123milliseconds)

    cool

    Please mark thread as resolved so that

    – others with similar problem can see it as resolved and will read this thread for help if they

    have similar problem

    – people providing help see it as resolved and will not waste time reading this post.

    Thread Starter polpaulin

    (@polpaulin)

    resolved ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘full articles list (no readmore or link title)’ is closed to new replies.