-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
62 lines (44 loc) · 1.21 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/*
╔═╗╔╦╗╔═╗╔╦╗
║ ║ ║ ╠╣ ║║║ https://otshelnik-fm.ru
╚═╝ ╩ ╚ ╩ ╩
*/
require_once 'inc/settings.php'; // подключаем настройки
require_once 'inc/resources.php'; // подключаем ресурсы
// регистрируем шорткод
add_shortcode( 'codeseller_product', 'soc_shortcode' );
function soc_shortcode( $atts ) {
if ( ! class_exists( 'SOC_Shortcode' ) ) {
require_once( 'inc/class-soc-shortcode.php' );
}
$shrt = new SOC_Shortcode( $atts );
return $shrt->get_products();
}
// сформируем урл
function soc_get_link( $product_id, $disable_ref ) {
$partner_id = '';
$url = 'https://codeseller.ru/';
if ( $disable_ref == 0 ) {
$partner_id = rcl_get_option( 'soc_prtnr_id' );
}
if ( $partner_id ) {
$url .= '?product-ref=' . $partner_id . '-' . $product_id;
} else {
$url .= '?p=' . $product_id;
}
return $url;
}
add_filter( 'rcl_inline_styles', 'soc_inline_styles', 10 );
function soc_inline_styles( $styles ) {
$round = rcl_get_option( 'soc_round', 2 );
if ( $round == 0 ) {
return $styles;
}
$styles .= '
:root {
--socRound: ' . $round . 'px;
}
';
return $styles;
}