Hi there,
This isn’t possible by default but if you’re comfortable adding a line or two to your theme its functions.php file then it is.
You can also use CSS to make the paragraph appear inline.
Let me know which route you want to take and I will help you out with it! 🙂
Thanks.
Thread Starter
lerrie
(@lerrie)
Hi Danny,
Adding a few lines to functions.php is no problem. What should I add?
Thanks!
Thread Starter
lerrie
(@lerrie)
So what should I add to the functions.php file?
Kind regards
Hi lerri,
You can manually add the link to the Facebook page after each post, within the paragraph, by adding the following lines of code to your functions.php file.
function rfbp_content_filter($content) {
$opts = rfbp_get_settings();
$content .= ' <a href="http://www.facebook.com/'. $opts['fb_id'] .'/">Find us on Facebook</a>';
return $content;
}
Hope that helps or sets you off in the right direction!