I have a quick installation question. I’m unsure where to actually put the code in the wp-config.php file. Your documentation states to insert it just before:
require_once(ABSPATH . ‘wp-settings.php’);
However, that line is not actually in my wp-config.php file. Where should I put the following snippet of code?
// StackSight start config
$ss_inc = dirname(__FILE__) . '/wp-content/plugins/stacksight/stacksight-php-sdk/bootstrap-wp.php';
if(is_file($ss_inc)) {
require_once($ss_inc);
}
// StackSight end config
Thanks,
Justin