Enabling or Disabling Social Networks
These are the filters you can use to enable or disable social networks.

<?php
add_filter(
'has_show_twitter',
function( $show_twitter ) {
if ( is_page() ) {
return false;
}
return $show_twitter;
}
);Available Filters
Last updated
Was this helpful?