Enabling or Disabling Social Networks
These are the filters you can use to enable or disable social networks.
Filters for Hiding/Showing Social Networks There are filters for each social network where you can enable/disable each network programmatically.
An example of hiding a social network via code would look like this:
<?php
add_filter(
'has_show_twitter',
function( $show_twitter ) {
if ( is_page() ) {
return false;
}
return $show_twitter;
}
);
Available Filters
Each filter returns a boolean: