How accomplish modification the_content if home/start page?

You can check for is_home() and is_front_page() inside of your filter:

add_filter( 'the_content', function( $content ) 
{
    if ( ! is_home() and ! is_front_page() )
        return $content;

    return 'Home, sweet home!<br>' . $content;
});

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)