Skip to content

Instantly share code, notes, and snippets.

@jlav1n
Last active January 22, 2016 17:06
Show Gist options
  • Save jlav1n/4da71f8a8a3d92fc47b4 to your computer and use it in GitHub Desktop.
Save jlav1n/4da71f8a8a3d92fc47b4 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Disable Pingbacks
Description: This plugin disables pingbacks.
Version: 1.0
Author: Josh Lavin
Author URI: http://www.endpoint.com
*/
add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['pingback.ping'] ); return $methods; } );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment