For using the WP Safelink you need to integrate our wp safelink functions into your theme because the theme is unique and we cant integrate it one by one. So you only need the simple steps to integrate the WP Safelink into your Custom Theme.
1. How to find the functions code
You can open the WP Safelink menu and navigate to New Safelink tabs you will find the two code function and that code we will integrate it.
2. Integrate the newwpsafelink_top functions
The first steps you can navigate to the Theme Editor from Appereance > Theme Editor > header.php
The seconds steps you can paste the code
<?php if(function_exists('newwpsafelink_top')) newwpsafelink_top();?>
into your header.php at last line. After that you can click Update File.
3. Integrate the newwpsafelink bottom functions
The first steps you can navigate to the Theme Editor from Appereance > Theme Editor > footer.php
The seconds steps you can paste the code
<?php if(function_exists('newwpsafelink_bottom')) newwpsafelink_bottom();?>
into your footer.php at first line. After that you can click Update File.