Add a plugin before main container

it looks like you’re using shortcode to execute your plugin. so instead of just

echo '[plugin id="1"]';

use this:

echo do_shortcode('[plugin id="1"]');

put this in the php file where you want it to load. For example, right above the

<div id="content">

this can be in whatever file you wish to execute the shortcode