-
Notifications
You must be signed in to change notification settings - Fork 15
/
seopress-functions.php
852 lines (752 loc) · 20.7 KB
/
seopress-functions.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
<?php
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
use SEOPress\Core\Kernel;
/**
* Get a service.
*
* @since 4.3.0
*
* @param string $service
*
* @return object
*/
function seopress_get_service($service) {
return Kernel::getContainer()->getServiceByName($service);
}
/**
* Get first key of an array if PHP < 7.3
* @since 4.2.1
* @return string
*/
if ( ! function_exists('array_key_first')) {
function array_key_first(array $arr) {
foreach ($arr as $key => $unused) {
return $key;
}
return null;
}
}
/**
* Get last key of an array if PHP < 7.3
* @since 4.2.1
* @return string
*/
if ( ! function_exists('array_key_last')) {
function array_key_last(array $arr) {
end($arr);
$key = key($arr);
return $key;
}
}
/**
* Remove WP default meta robots (added in WP 5.7)
*
* @since 4.4.0.7
*/
remove_filter('wp_robots', 'wp_robots_max_image_preview_large');
/**
* Remove WC default meta robots (added in WP 5.7)
*
* @since 4.6
* @todo use wp_robots API
* @updated 5.8
*/
function seopress_robots_wc_pages($robots) {
include_once ABSPATH . 'wp-admin/includes/plugin.php';
if (is_plugin_active('woocommerce/woocommerce.php')) {
if (function_exists('wc_get_page_id')) {
if (is_page(wc_get_page_id('cart')) || is_page(wc_get_page_id('checkout')) || is_page(wc_get_page_id('myaccount'))) {
if ('0' === get_option('blog_public')) {
return $robots;
} else {
unset($robots);
$robots = [];
return $robots;
}
}
}
}
//remove noindex on search archive pages
if (is_search()) {
if ('0' === get_option('blog_public')) {
return $robots;
} else {
unset($robots);
$robots = [];
return $robots;
}
}
return $robots;
}
add_filter('wp_robots', 'seopress_robots_wc_pages', 20);
/**
* Remove default WC meta robots.
*
* @since 3.8.1
*/
function seopress_compatibility_woocommerce() {
if (function_exists('is_plugin_active')) {
if (is_plugin_active('woocommerce/woocommerce.php') && ! is_admin()) {
remove_action('wp_head', 'wc_page_noindex');
}
}
}
add_action('wp_head', 'seopress_compatibility_woocommerce', 0);
/**
* Remove Jetpack OpenGraph tags.
*
* @since 3.5.9
*/
function seopress_compatibility_jetpack() {
if (function_exists('is_plugin_active')) {
if (is_plugin_active('jetpack/jetpack.php') && ! is_admin()) {
add_filter('jetpack_enable_open_graph', '__return_false');
add_filter('jetpack_disable_seo_tools', '__return_true');
}
}
}
add_action('wp_head', 'seopress_compatibility_jetpack', 0);
/**
* Remove Jetpack OpenGraph tags.
*
* @since 6.9
*/
function seopress_compatibility_hello_elementor() {
remove_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );
}
add_action( 'after_setup_theme', 'seopress_compatibility_hello_elementor' );
/**
* Filter the xml sitemap URL used by SiteGround Optimizer for preheating.
*
* @since 6.6.0
*
* @param string $url URL to be preheated.
*/
if (function_exists('is_plugin_active')) {
if (is_plugin_active('sg-cachepress/sg-cachepress.php')) {
function sp_sg_file_caching_preheat_xml($url) {
$url = get_home_url() . '/sitemaps.xml';
return $url;
}
add_filter('sg_file_caching_preheat_xml', 'sp_sg_file_caching_preheat_xml');
}
}
/**
* Remove WPML home url filter.
*
* @since 3.8.6
*
* @param mixed $home_url
* @param mixed $url
* @param mixed $path
* @param mixed $orig_scheme
* @param mixed $blog_id
*/
function seopress_remove_wpml_home_url_filter($home_url, $url, $path, $orig_scheme, $blog_id) {
return $url;
}
/**
* Remove third-parties metaboxes on our CPT
* @since 4.2
*/
add_action('do_meta_boxes', 'seopress_remove_metaboxes', 10);
function seopress_remove_metaboxes() {
//Oxygen Builder
remove_meta_box('ct_views_cpt', 'seopress_404', 'normal');
remove_meta_box('ct_views_cpt', 'seopress_schemas', 'normal');
remove_meta_box('ct_views_cpt', 'seopress_bot', 'normal');
}
/**
* Get all custom fields (limit: 250).
*
* @return array custom field keys
*/
function seopress_get_custom_fields() {
$cf_keys = wp_cache_get('seopress_get_custom_fields');
if (false === $cf_keys) {
global $wpdb;
$limit = (int) apply_filters('postmeta_form_limit', 250);
$cf_keys = $wpdb->get_col($wpdb->prepare("
SELECT DISTINCT meta_key
FROM $wpdb->postmeta
GROUP BY meta_key
HAVING meta_key NOT LIKE '\_%%'
ORDER BY meta_key
LIMIT %d", $limit));
if (is_plugin_active('types/wpcf.php')) {
$wpcf_fields = get_option('wpcf-fields');
if ( ! empty($wpcf_fields)) {
foreach ($wpcf_fields as $key => $value) {
$cf_keys[] = $value['meta_key'];
}
}
}
$cf_keys = apply_filters('seopress_get_custom_fields', $cf_keys);
if ($cf_keys) {
natcasesort($cf_keys);
}
wp_cache_set('seopress_get_custom_fields', $cf_keys);
}
return $cf_keys;
}
/**
* Check SSL for schema.org.
*
* @return string correct protocol
*/
function seopress_check_ssl() {
if (is_ssl()) {
return 'https://';
} else {
return 'http://';
}
}
/**
* Check if a string is base64 encoded
*
* @param string $str The string to check
* @return bool Returns true if the string is base64 encoded, false otherwise
*/
function seopress_is_base64_string($str) {
// Check if the string is empty or not a string
if (empty($str) || !is_string($str)) {
return false;
}
// Decode the string and check if it decodes properly
$decoded = base64_decode($str, true);
if ($decoded === false) {
return false;
}
// Encode the decoded string and compare with the original string
return base64_encode($decoded) === $str;
}
/**
* Get IP address.
*
* @return (string) $ip
**/
function seopress_get_ip_address() {
foreach (['HTTP_CLIENT_IP', 'HTTP_CF_CONNECTING_IP', 'HTTP_VIA', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR'] as $key) {
if (true === array_key_exists($key, $_SERVER)) {
foreach (explode(',', $_SERVER[$key]) as $ip) {
$ip = trim($ip); // just to be safe
return apply_filters('seopress_404_ip', $ip ? $ip : '');
}
}
}
}
/**
* Disable Query Monitor for CA.
*
* @return array
*
* @param mixed $url
* @param mixed $allcaps
* @param mixed $caps
* @param mixed $args
*/
function seopress_disable_qm($allcaps, $caps, $args) {
$allcaps['view_query_monitor'] = false;
return $allcaps;
}
/**
* Clear content for CA.
*/
function seopress_clean_content_analysis() {
if (!is_user_logged_in()) {
return;
}
if (current_user_can('edit_posts')) {
if (isset($_GET['no_admin_bar']) && '1' === $_GET['no_admin_bar']) {
//Remove admin bar
add_filter('show_admin_bar', '__return_false');
//Disable Query Monitor
add_filter('user_has_cap', 'seopress_disable_qm', 10, 3);
//Disable wptexturize
add_filter('run_wptexturize', '__return_false');
//Remove Edit nofollow links from TablePress
add_filter( 'tablepress_edit_link_below_table', '__return_false');
//Allow user to run custom action to clean content
do_action('seopress_content_analysis_cleaning');
}
}
}
add_action('plugins_loaded', 'seopress_clean_content_analysis');
/**
* Test if a URL is in absolute.
*
* @return bool true if absolute
*
* @param mixed $url
*/
function seopress_is_absolute($url) {
$pattern = "%^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@|\d{1,3}(?:\.\d{1,3}){3}|(?:(?:[a-z\d\x{00a1}-\x{ffff}]+-?)*[a-z\d\x{00a1}-\x{ffff}]+)(?:\.(?:[a-z\d\x{00a1}-\x{ffff}]+-?)*[a-z\d\x{00a1}-\x{ffff}]+)*(?:\.[a-z\x{00a1}-\x{ffff}]{2,6}))(?::\d+)?(?:[^\s]*)?$%iu";
return (bool) preg_match($pattern, $url);
}
/**
* Manage localized links.
*
* @return string locale for documentation links
*/
function seopress_get_locale() {
switch (get_user_locale(get_current_user_id())) {
case 'fr_FR':
case 'fr_BE':
case 'fr_CA':
case 'fr_LU':
case 'fr_MC':
case 'fr_CH':
$locale_link = 'fr';
break;
default:
$locale_link = '';
break;
}
return $locale_link;
}
/**
* Extract correct locale in ISO format from get_locale().
*
* @return string locale
*/
function seopress_normalized_locale($current_locale) {
if (!function_exists('locale_get_primary_language')) {
return $current_locale;
}
// Extract primary language and region
$primary_language = locale_get_primary_language($current_locale);
$region = locale_get_region($current_locale);
// Check if region is available, if not, return only the primary language
$normalized_locale = $primary_language . ($region ? '_' . $region : '');
return $normalized_locale;
}
/**
* Returns the language code by supporting multilingual plugins
*
* @since 6.8
*
* @return string language code
*/
function seopress_get_current_lang() {
//Default
$lang = seopress_normalized_locale(get_locale());
//Polylang
if (function_exists('pll_current_language')) {
$lang = pll_current_language('locale');
}
//WPML
if (defined('ICL_SITEPRESS_VERSION')) {
$lang = apply_filters( 'wpml_current_language', NULL );
}
return $lang;
}
/**
* Check empty global title template.
*
* @since 5.0
*
* @param string $type
* @param string $metadata
* @param bool $notice
*
* @return string notice with list of empty cpt titles
*/
function seopress_get_empty_templates($type, $metadata, $notice = true) {
$cpt_titles_empty = [];
$templates = '';
$data = '';
$html = '';
$list = '';
if ('cpt' === $type) {
$templates = $postTypes = seopress_get_service('WordPressData')->getPostTypes();
$notice_i18n = __('Custom Post Types', 'wp-seopress');
}
if ('tax' === $type) {
$templates = seopress_get_service('WordPressData')->getTaxonomies();
$notice_i18n = __('Custom Taxonomies', 'wp-seopress');
}
foreach ($templates as $key => $value) {
$options = get_option('seopress_titles_option_name');
if (!empty($options)) {
if ('cpt' === $type) {
if (!empty($options['seopress_titles_single_titles'])) {
if (!array_key_exists($key, $options['seopress_titles_single_titles'])) {
$cpt_titles_empty[] = $key;
} else {
$data = isset($options['seopress_titles_single_titles'][$key][$metadata]) ? $options['seopress_titles_single_titles'][$key][$metadata] : '';
}
}
}
if ('tax' === $type) {
if (!empty($options['seopress_titles_tax_titles'])) {
if (!array_key_exists($key, $options['seopress_titles_tax_titles'])) {
$cpt_titles_empty[] = $key;
} else {
$data = isset($options['seopress_titles_tax_titles'][$key][$metadata]) ? $options['seopress_titles_tax_titles'][$key][$metadata] : '';
}
}
}
}
if (empty($data)) {
if (seopress_get_service('TitleOption')->getSingleCptEnable($key) !== '1' && seopress_get_service('TitleOption')->getTaxEnable($key) !== '1') {
$cpt_titles_empty[] = $key;
}
}
}
if ( ! empty($cpt_titles_empty)) {
$list .= '<ul>';
foreach ($cpt_titles_empty as $cpt) {
$list .= '<li>' . $cpt . '</li>';
}
$list .= '</ul>';
if (false === $notice) {
return $list;
} else {
$html .= '<div class="seopress-notice is-warning">
<p>';
/* translators: %1$s: "Custom Post Types" or "Custom Taxonomies", %2$s: "title" or "description" */
$html .= wp_kses_post(sprintf(__('Some <strong>%1$s</strong> have no <strong>meta %2$s</strong> set! We strongly encourage you to add one by filling in the fields below.', 'wp-seopress'), esc_attr($notice_i18n), esc_attr($metadata)));
$html .= '</p>';
$html .= $list;
$html .= '</div>';
return $html;
}
}
}
/**
* Generate Permalink notice to prevent users change the permastructure on a live site.
*
* @since 6.5
*
* @return string $message
*
*/
function seopress_notice_permalinks() {
global $pagenow;
if (isset($pagenow) && 'options-permalink.php' !== $pagenow) {
return;
}
$class = 'notice notice-warning';
$message = '<strong>' . __('WARNING', 'wp-seopress') . '</strong>';
$message .= '<p>' . __('Do NOT change your permalink structure on a production site. Changing URLs can severely damage your SEO.', 'wp-seopress') . '</p>';
printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), wp_kses_post($message));
}
add_action('admin_notices', 'seopress_notice_permalinks');
/**
* Generate a notice on permalink settings screen if URL rewriting is disabled.
*
* @since 6.5.0
*
* @return string $message
*
*/
function seopress_notice_no_rewrite_url() {
//Check we are on the Permalink settings page
global $pagenow;
if (isset($pagenow) && 'options-permalink.php' !== $pagenow) {
return;
}
//Check permalink structure
if ('' !== get_option('permalink_structure')) {
return;
}
//Display the notice
$class = 'notice notice-warning';
$message = '<strong>' . __('WARNING', 'wp-seopress') . '</strong>';
$message .= '<p>' . __('URL rewriting is NOT enabled on your site. Select a permalink structure that is optimized for SEO (NOT Plain).', 'wp-seopress') . '</p>';
printf('<div class="%1$s"><p>%2$s</p></div>', esc_attr($class), wp_kses_post($message));
}
add_action('admin_notices', 'seopress_notice_no_rewrite_url');
/**
* Generate Tooltip.
*
* @since 3.8.2
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_desc
* @param mixed $tooltip_code
*
* @return string tooltip title, tooltip description, tooltip url
*/
function seopress_tooltip($tooltip_title, $tooltip_desc, $tooltip_code) {
$html =
'<button type="button" class="sp-tooltip"><span class="dashicons dashicons-editor-help"></span>
<span class="sp-tooltiptext" role="tooltip" tabindex="0">
<span class="sp-tooltip-headings">' . $tooltip_title . '</span>
<span class="sp-tooltip-desc">' . $tooltip_desc . '</span>
<span class="sp-tooltip-code">' . $tooltip_code . '</span>
</span></button>';
return $html;
}
/**
* Generate Tooltip (alternative version).
*
* @since 3.8.6
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_anchor
* @param mixed $tooltip_desc
*
* @return string tooltip title, tooltip description, tooltip url
*/
function seopress_tooltip_alt($tooltip_anchor, $tooltip_desc) {
$html =
'<button type="button" class="sp-tooltip alt">' . $tooltip_anchor . '
<span class="sp-tooltiptext" role="tooltip" tabindex="0">
<span class="sp-tooltip-desc">' . $tooltip_desc . '</span>
</span>
</button>';
return $html;
}
/**
* Generate Tooltip link.
*
* @since 5.0
*
* @param string $tooltip_title, $tooltip_desc, $tooltip_code
* @param mixed $tooltip_anchor
* @param mixed $tooltip_desc
*
* @return string tooltip title, tooltip description, tooltip url
*/
function seopress_tooltip_link($tooltip_anchor, $tooltip_desc) {
$html = '<a href="' . $tooltip_anchor . '"
target="_blank" class="seopress-doc">
<span class="dashicons dashicons-editor-help"></span>
<span class="screen-reader-text">
' . $tooltip_desc . '
</span>
</a>';
return $html;
}
/**
* Remove BOM.
*
* @since 3.8.2
*
* @param mixed $text
*
* @return mixed $text
*/
function seopress_remove_utf8_bom($text) {
$bom = pack('H*', 'EFBBBF');
$text = preg_replace("/^$bom/", '', $text);
return $text;
}
/**
* Filter the capability to allow other roles to use the plugin.
*
* @since 3.8.2
*
* @return string
*
* @param mixed $cap
* @param mixed $context
*/
function seopress_capability($cap, $context = '') {
$newcap = apply_filters('seopress_capability', $cap, $context);
if ( ! current_user_can($newcap)) {
return $cap;
}
return $newcap;
}
/**
* Check if the page is one of ours.
*
* @since 3.8.2
*
* @return bool
*/
function is_seopress_page() {
if ( ! is_admin() && ( ! isset($_REQUEST['page']) || ! isset($_REQUEST['post_type']))) {
return false;
}
if (isset($_REQUEST['page'])) {
return 0 === strpos($_REQUEST['page'], 'seopress');
} elseif (isset($_REQUEST['post_type'])) {
if (is_array($_REQUEST['post_type']) && !empty($_REQUEST['post_type'])) {
return 0 === strpos($_REQUEST['post_type'][0], 'seopress');
} else {
return 0 === strpos($_REQUEST['post_type'], 'seopress');
}
}
}
/**
* Only add our notices on our pages.
*
* @since 3.8.2
*
* @return bool
*/
function seopress_remove_other_notices() {
if (is_seopress_page()) {
remove_all_actions('network_admin_notices');
remove_all_actions('admin_notices');
remove_all_actions('user_admin_notices');
remove_all_actions('all_admin_notices');
add_action('admin_notices', 'seopress_admin_notices');
if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
if ( version_compare(SEOPRESS_PRO_VERSION, '6.4', '>=')) {
add_action('admin_notices', 'seopress_pro_admin_notices');
}
}
if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) {
if ( version_compare(SEOPRESS_INSIGHTS_VERSION, '1.8.1', '>=')) {
add_action('admin_notices', 'seopress_insights_notices');
}
}
}
}
add_action('in_admin_header', 'seopress_remove_other_notices', 1000);//keep this value high to remove other notices
/**
* Only add our notices on our pages.
*
* @since 8.2.0
*
* @return bool
*/
function seopress_remove_other_plugin_notices() {
if (is_seopress_page()) {
//SEOKEY plugin doesn't hook properly, we have to make a specific case
remove_all_filters('seokey_filter_admin_notices_launch', 10);
}
}
add_action('admin_init', 'seopress_remove_other_plugin_notices');
/**
* We replace the WP action by ours.
*
* @since 3.8.2
*
* @return bool
*/
function seopress_admin_notices() {
do_action('seopress_admin_notices');
}
/**
* Check if a key exists in a multidimensional array.
*
* @since 3.8.2
*
* @return bool
*
* @param mixed $key
*/
function seopress_if_key_exists(array $arr, $key) {
// is in base array?
if (array_key_exists($key, $arr)) {
return true;
}
// check arrays contained in this array
foreach ($arr as $element) {
if (is_array($element)) {
if (seopress_if_key_exists($element, $key)) {
return true;
}
}
}
return false;
}
/**
* Output submit button.
*
* @since 5.0
*
* @param mixed $value
* @param mixed $classes
* @param mixed $type
*/
function sp_submit_button($value = '', $classes = 'btn btnPrimary', $type = 'submit') {
if ('' === $value) {
$value = __('Save changes', 'wp-seopress');
}
// Use esc_attr_e to escape attributes in the output
$html = '<p class="submit"><input id="submit" name="submit" type="' . esc_attr($type) . '" class="' . esc_attr($classes) . '" value="' . esc_attr($value) . '"/></p>';
echo $html;
}
/**
* Generate HTML buttons classes
*
* @since 5.0
*
* @return
*/
function seopress_btn_secondary_classes() {
//Classic Editor compatibility
global $pagenow;
if (function_exists('get_current_screen') && method_exists(get_current_screen(), 'is_block_editor') && true === get_current_screen()->is_block_editor()) {
$btn_classes_secondary = 'components-button is-secondary';
} elseif (isset($pagenow) && ($pagenow === 'term.php' || $pagenow === 'post.php' || $pagenow === 'post-new.php') ) {
$btn_classes_secondary = 'button button-secondary';
} else {
$btn_classes_secondary = 'btn btnSecondary';
}
return $btn_classes_secondary;
}
/**
* Global check.
*
* @since 3.8
*
* @param string $feature
*
* @return string 1 if true
*/
function seopress_get_toggle_option($feature) {
$seopress_get_toggle_option = get_option('seopress_toggle');
if ( ! empty($seopress_get_toggle_option)) {
foreach ($seopress_get_toggle_option as $key => $seopress_get_toggle_value) {
$options[$key] = $seopress_get_toggle_value;
if (isset($seopress_get_toggle_option['toggle-' . $feature])) {
return $seopress_get_toggle_option['toggle-' . $feature];
}
}
}
}
/**
* Disable Add to cart GA tracking code on archive page / related products for Elementor PRO to avoid a JS conflict
* @since 5.3
* @return empty string
*/
include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
if (is_plugin_active('elementor-pro/elementor-pro.php')) {
add_filter('seopress_gtag_ec_add_to_cart_archive_ev', 'sp_elementor_gtag_ec_add_to_cart_archive_ev');
function sp_elementor_gtag_ec_add_to_cart_archive_ev($js) {
return '';
}
}
/**
* Helper function needed for PHP 8.1 compatibility with "current" function
* Get mangled object vars
* @since 6.2.0
*/
function seopress_maybe_mangled_object_vars($data){
if(!function_exists('get_mangled_object_vars')){
return $data;
}
if(!is_object($data)){
return $data;
}
return get_mangled_object_vars($data);
}
/**
* Automatically flush permalinks after saving XML sitemaps global settings
* @since 6.0.0
*
* @param string $option
* @param string $old_value
* @param string $value
*
* @return void
*/
add_action('update_option', function( $option, $old_value, $value ) {
if ($option ==='seopress_xml_sitemap_option_name') {
set_transient('seopress_flush_rewrite_rules', 1);
}
}, 10, 3);
add_action('admin_init', 'seopress_auto_flush_rewrite_rules');
function seopress_auto_flush_rewrite_rules() {
if (get_transient('seopress_flush_rewrite_rules')) {
flush_rewrite_rules(false);
delete_transient('seopress_flush_rewrite_rules');
}
}