This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Omphaloskepsis/plugins/jetpack/modules/shortcodes/diggthis.php

12 lines
163 B
PHP
Raw Normal View History

2018-03-21 18:19:20 +00:00
<?php
/**
* Digg's API is no more and support has been removed
*/
function digg_shortcode( $atts ) {
return '';
}
add_shortcode( 'digg', 'digg_shortcode' );