I’m sure.
Now I write in plugin this code:
function my( $content ) {
echo 'BBBBBB';
}
add_filter('the_content', 'my');
But when I activate plugin and write post: ‘text text text text text’, I see ‘text text text text textBBBBBB’
What I must to write in this plugin when I will see only ‘BBBBBB’ ?