بخصوص هذا الجزء حضرتك لم تقم بإصلاحه
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
//
// Post Content here
//
} end while;
} // end if supposed to be here
?>
فهو يأتى بخطأ اثناء التنفيذ قمت بزيارة كودكس ووردبريس
https://codex.wordpress.org/The_Loop
فكانت النتيجة كالتالى
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
//
// Post Content here
//
} // end while
} // end if
?>