diggthis.php 163 B

1234567891011
  1. <?php
  2. /**
  3. * Digg's API is no more and support has been removed
  4. */
  5. function digg_shortcode( $atts ) {
  6. return '';
  7. }
  8. add_shortcode( 'digg', 'digg_shortcode' );