kollapsminoriteten/wp-content/plugins/jetpack/modules/sharedaddy.php

35 lines
1.1 KiB
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<?php
/**
* Module Name: Sharing
2025-07-27 19:58:08 +02:00
* Module Description: Add customizable share buttons so visitors can spread your content.
2019-11-15 23:26:29 +01:00
* Sort Order: 7
* Recommendation Order: 6
* First Introduced: 1.1
* Major Changes In: 1.2
* Requires Connection: No
* Auto Activate: No
* Module Tags: Social, Recommended
* Feature: Engagement
2026-03-31 11:30:59 +02:00
* Additional Search Queries: share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, social widget, social media
2019-11-15 23:26:29 +01:00
*
2021-04-27 08:32:47 +02:00
* @package automattic/jetpack
2019-11-15 23:26:29 +01:00
*/
2025-12-12 13:13:07 +01:00
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
2020-03-03 18:49:45 +01:00
2019-11-15 23:26:29 +01:00
if ( ! function_exists( 'sharing_init' ) ) {
2020-12-10 14:04:11 +01:00
require __DIR__ . '/sharedaddy/sharedaddy.php';
2019-11-15 23:26:29 +01:00
}
add_action( 'jetpack_modules_loaded', 'sharedaddy_loaded' );
/**
* Sharing module code loaded after all modules have been loaded.
*/
function sharedaddy_loaded() {
Jetpack::enable_module_configurable( __FILE__ );
2025-12-12 13:13:07 +01:00
add_filter( 'jetpack_module_configuration_url_sharedaddy', 'get_sharing_buttons_customisation_url' );
2019-11-15 23:26:29 +01:00
}