I am using a custom permalinks set-up and I'm not entirely sure why it's not showing all of my posts on index.php:
Posts page
Detailed Post page.
I'm thinking this could be a potential .htaccess issue but after perusing around the forums, I have it how it should be:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I'm real stuck on this and any help would be appreciated.