This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
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' );