
I installed Mediumish theme. But on the main homepage, I can only see 2 featured posts so far. I need 4 as shown on the demo site here: https://www.themepush.com/freethemes/me ... index.html
What should I have to do for this?
Thanks.

The theme is a little bit tricky.jack123 wrote: Wed Oct 05, 2022 12:10 pm I saw that there is 2 post limit in home.php file. I can just change that to 4...would that be a problem? I tried it and it's working.
Code: Select all
<?php
// Get the first and second page from the content
$featured = array_slice($content, 0, 4);
$content = array_slice($content, 4);
foreach ($featured as $page):
?>
Code: Select all
<?php
// Get the first and second page from the content
$featured = array_slice($content, 0, 2);
$content = array_slice($content, 2);
foreach ($featured as $page):
?>