sharedaddy.php
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: Sharing |
| 4 | * Module Description: The most super duper sharing tool on the interwebs. Share content with Facebook, Twitter, and many more. |
| 5 | * Sort Order: 5 |
| 6 | * First Introduced: 1.1 |
| 7 | * Major Changes In: 1.2 |
| 8 | * Requires Connection: No |
| 9 | * Auto Activate: Yes |
| 10 | * Module Tags: Social |
| 11 | */ |
| 12 | |
| 13 | if ( !function_exists( 'sharing_init' ) ) |
| 14 | include dirname( __FILE__ ).'/sharedaddy/sharedaddy.php'; |
| 15 | |
| 16 | add_action( 'jetpack_modules_loaded', 'sharedaddy_loaded' ); |
| 17 | |
| 18 | function sharedaddy_loaded() { |
| 19 | Jetpack::enable_module_configurable( __FILE__ ); |
| 20 | Jetpack::module_configuration_load( __FILE__, 'sharedaddy_configuration_load' ); |
| 21 | } |
| 22 | |
| 23 | function sharedaddy_configuration_load() { |
| 24 | wp_safe_redirect( menu_page_url( 'sharing', false ) . "#sharing-buttons" ); |
| 25 | exit; |
| 26 | } |
| 27 |