-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfreemius.php
35 lines (33 loc) · 1.11 KB
/
freemius.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* Init Freemius SDK.
*/
defined( 'ABSPATH' ) || exit;
if ( ! function_exists( 'revivepress_fs' ) ) {
function revivepress_fs() {
global $revivepress_fs;
if ( ! isset( $revivepress_fs ) ) {
$revivepress_fs = fs_dynamic_init( array(
'id' => '5789',
'slug' => 'wp-auto-republish',
'type' => 'plugin',
'public_key' => 'pk_94e7891c5190ae1f9af5110b0f6eb',
'is_premium' => false,
'premium_suffix' => 'Premium',
'has_addons' => false,
'has_paid_plans' => true,
'menu' => array(
'slug' => 'revivepress',
'support' => false,
'affiliation' => false,
),
'trial' => array(
'days' => 7,
'is_require_payment' => false,
),
'is_live' => true,
) );
}
return $revivepress_fs;
}
}