Hey everyone,
I am attempting to add my feedburner flare code to my child theme through a function. Here's what it looks like:
global $post, $authordata;
$postfooter .= '<script src="http://feeds.feedburner.com/~s/patdryburgh?i=';
$postfooter .= the_permalink();
$postfooter .= '" type="text/javascript" charset="utf-8"></script>';
echo apply_filters( 'brown_postfooter', $postfooter );
What am I not doing right here? The permalink seems to go before the top and bottom parts. Suggestions?
Thanks!