• Hi,

    i found the code under “content.php”

    <h2 class="post-title">
    <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    </h2><!--/.post-title-->

    Would like to know how to limit the number of charracthers with the following “…” at the end.

    Also how do i change the number of posts under the featured slider? Now i have 10, but it is to many, 4 or 6 is ideal.

    Cheers.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there,

    Would like to know how to limit the number of charracthers with the following “…” at the end.

    go to Dashboard->Appearance->Theme Options->Blog and you’ll find a setting called Excerpt Length

    The featured slider is embedded on theme or are you using another plugin?

    Please advise,
    Dimitris

    The featured slider is embedded on theme or are you using another plugin?

    OK, found it… go to Dashboard->Appearance->Theme Options->Blog and set Featured Post Count to 4 or 6.

    Cheers,
    Dimitris

    Thread Starter nis4

    (@nis4)

    Hi fovoc,

    i know about those options, but they are related to the words in text, and the slideshow.

    I am interested in the “title” charachter number of those posts on the front page, and the number of the posts below the slideshow. By default it’s 10, then goes the pagination…

    Thank you.

    Thread Starter nis4

    (@nis4)

    I managed to solve the title post character count with, and for the posts count i found this part that is “controling” them:

    <div class="post-list group">
    <?php $i = 1; echo '<div class="post-row">'; while ( have_posts() ): the_post(); ?>
    <?php get_template_part('content'); ?>
    <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?>
    </div><!--/.post-list-->

    Hey there,

    excuse my misunderstanding here.

    The number of posts in every page is a generic WP setting located in Dashboard->Settings->Reading->Blog pages show at most.

    Cheers,
    Dimitris

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Limit post title characters and post numbers’ is closed to new replies.