'main', 'footer_widgets' => array( 'footer-one', 'footer-two', 'footer-three', 'footer-four', ), 'footer' => 'page', )); /** * Add theme support for Responsive Videos. */ add_theme_support('jetpack-responsive-videos'); } add_action('after_setup_theme', 'avish_jetpack_setup'); /** * Remove sharedaddy from excerpt. * * @since 1.0.0 */ /** * Remove sharedaddy from excerpt. * * @since 1.0.0 */ function avish_remove_sharedaddy() { remove_filter('the_content', 'sharing_display', 19); remove_filter('the_excerpt', 'sharing_display', 19); if (class_exists('Jetpack_Likes')) { remove_filter('the_content', array(Jetpack_Likes::init(), 'post_likes'), 30, 1); } } add_action('loop_start', 'avish_remove_sharedaddy');