Insert links to other posts in content as shortcode and render it with custom template. Default template located at wp-content/plugins/relink/template …
Insert links to other posts in content as shortcode and render it with custom template.
Default template located at wp-content/plugins/relink/templates/readmore.php
Create filter “relink_template” and return path to your template.
Example, include template from my theme folder:
add_filter(‘relink_template’, function(){
return locate_template(‘templates/my-custom-relink-template.php’);
});