MySQL PHP WP: How to Insert a Post Plugin Batch
- 1). Open your Word Press PHP file in a text editor.
- 2). Find the location in the posts that starts with “<?php if (have_posts()) : while (have_posts()) : the_post(); ?>” and ends with “<?php endwhile; ?>”. This is where you have to insert the plugin.
- 3). Insert the plugin batch codes into the post code. Copy the plugin codes from the plugin readme files and paste them into the post code. Be sure to paste the plugin batch codes in between the other PHP code. Don’t erase any code to place the new plugin code in place.