I was trying to post a new article, but i got the following warning. WARN deprecated: .Site.Social was deprecated in Hugo v0.124.0 and will be removed in a future release. Use .Site.Params instead. I googled some informations and found a quick method to solve this problem. Add social: true to config file, and the warning message just disappears.

Config.yml

params:
    social: true

Config.toml

[params]
    social = true

References