Quote:
Originally Posted by MumDadBaby
Hi folks,
I'm also receiving the "headers already sent" error when making a post. The plugin still manages to post to the correct forum with the correct title/username etc but there's no content, just the link back to the article itself.
Any ideas?
Cheers,
Robert
|
This is what I'm getting (see attachment).
Now going by that (I'm not 100% on PHP errors) I'm assuming there's something wrong with my child theme's functions.php at line 20.
Here's the full function found around that line (line 20 is the echo $output line):
PHP Code:
remove_filter( 'get_the_excerpt', 'twentyten_custom_excerpt_more' );
function mindfulmum_custom_excerpt_more( $output ) {
if ( has_excerpt() && ! is_attachment() ) {$output = str_replace(array("\r", "\r\n", "\n"), '', $output);}
echo $output."…";}
add_filter( 'get_the_excerpt', 'mindfulmum_custom_excerpt_more' );
Any ideas?
Cheers,
Robert