Hello I am new to php and having a challenge integrating a plugin. I need to change the start and end wrapper for it but I don’t understand what my themes container divs are that I need to input to the start and end files for Wordpress.
Here is the Page.php file that I am trying to pull my container divs from:
[php]<?php get_header(); ?>
<?php if ( has_post_thumbnail()) { ?>
<div class="feature-img page"><?php the_post_thumbnail( 'featured-large' ); ?></div>
<?php } else { ?>
<div class="feature-img page"><img src="<?php bloginfo('template_directory'); ?>/images/default-page.png" alt="<?php the_title(); ?>" /></div>
<?php } ?>
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN .eight columns -->
<div class="eight columns">
<!-- BEGIN .postarea -->
<div <?php post_class('postarea'); ?> id="page-<?php the_ID(); ?>">
POST AREA PHP REMOVED
<?php endif; ?>
<!-- END .postarea -->
</div>
<!-- END .eight columns -->
</div>
<div class="four columns">
<div class="sidebar">
<?php get_sidebar( 'right-sidebar' ); ?>
</div>
</div>
<!-- END .row -->
</div>