How to create custom dynamic url

your rewrite patern miss a “&” between $matches[1] & content_slug

function wpyog_add_rewrite_rules(){
    add_rewrite_rule('^content/([^/]*)/([^/]*)/?','index.php?content_category=$matches[1]&content_slug=$matches[2]','top');
}