I know PHP well but I’m new to WordPress. I got an incomplete WordPress website. It has a static home page with an Aweber newsletter form. I tried digging into installed theme and in home.php
I came across:
<div class="home-infobox">
<?php if ( is_active_sidebar( 'homepage-infobox' ) ) : ?>
<?php dynamic_sidebar( 'homepage-infobox' ); ?>
<?php endif; ?>
</div>
Now when I view source on the home page, the Aweber newsletter subscription form appears exactly within <div class="home-infobox">
. I have to make changes to the form as my first step and I tried to figure out from where is it fetching the content? Is it from the database or from any PHP files, I am totally clueless.
Please help me figure this out.