Modifying WP_Title For Custom Post Type

The filter wp_title won’t pass $id to your function. Drop the parameter and instead retrieve it with get_queried_object_id():

function dw_listing_title( $title ) {
    if ( is_singular() && $id = get_queried_object_id() ) {
       // Modify $title as required
    }

    return $title;
}

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