implementing a centralized content “show-do-not-show” toggle?

It’s a bad practice to update an option on every page load. You should use a constant instead.

define('SHOW_SOCIAL_BAR', true); //functions.php

if(SHOW_SOCIAL_BAR){
    //Do Something
}