Hello,
I have installed the Featured Posts Grid plugin for WordPress. To make this plugin work, I have to place a few lines of php code to my “desired template location”. But how do I add this code to my Simple Catch Pro theme, without losing it after theme updates?
This is what the theme site writes >
To use this plugin to display the most recent posts in any category and with any tag:
Copy and paste the code below to your desired template location:
<?php if (function_exists(‘fpg_show’)) {
            $args = array(
                ‘cat’     => ”,/* comma separated list of category ids to include (put ‘-‘ in front of ids to exclude) */
                ‘tag’     => ” /* comma separated list tag slugs to include */);
            echo fpg_show($args);
        }?>