Recently I installed free version of Education Park wordpress theme and started to customize it.
But for my client, he wanted to list all pages in home page. Unfortunately Education Park theme only displaying 3 pages with thumbnails.
So edited the home page template at public_html/wp-content/themes/education-park/page-templates/template-cpmfront.php, online 75
Find
'posts_per_page' => 3,Replace with
'posts_per_page' => 25,Also checked the theme with themecheck.org and found one critical alert.
Presence of iframes : iframes are sometimes used to load unwanted adverts and malicious code on another site Found <iframe src="' . $urls[0] . '" width="100%" height="240" frameborder="no" scrolling="no"> in file functions.php. Line 467: $html .= ('<iframe src='' . $urls[0] . '' width='100%' height='240' frameborder='no' sSo I removed the iframe code from functions.php