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-->
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)
Hi,
Heh such a simple solution, but it did not occur to me (shame on me 🙁 )
Thank you very much for your help, it worked.
Cheers.