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
|
<?php
/**
* Class containing utility static methods that other SEO tools are relying on.
*
* @package automattic/jetpack
*/
/**
* Class containing utility static methods that other SEO tools are relying on.
*/
class Jetpack_SEO_Utils {
/**
* Site option name used to store front page meta description.
*/
const FRONT_PAGE_META_OPTION = 'advanced_seo_front_page_description';
/**
* The LEGACY_META_OPTION is used to support legacy usage on WPcom simple sites (free or paid).
* For WPorg JP sites, the JP seo-tools features were made free for all sites (free or paid).
*/
const LEGACY_META_OPTION = 'seo_meta_description';
/**
* Used to check whether SEO tools are enabled for given site.
*
* @param int $site_id Optional. Defaults to current blog id if not given.
*
* @return bool True if SEO tools are enabled, false otherwise.
*/
public static function is_enabled_jetpack_seo( $site_id = 0 ) {
/**
* Can be used by SEO plugin authors to disable the conflicting output of SEO Tools.
*
* @module seo-tools
*
* @since 5.0.0
*
* @param bool True if SEO Tools should be disabled, false otherwise.
*/
if ( apply_filters( 'jetpack_disable_seo_tools', false ) ) {
return false;
}
if ( function_exists( 'has_any_blog_stickers' ) ) {
// For WPCOM simple sites.
if ( empty( $site_id ) ) {
$site_id = get_current_blog_id();
}
return has_any_blog_stickers( array( 'business-plan', 'ecommerce-plan' ), $site_id );
}
// For all Jetpack sites.
return true;
}
/**
* Checks if this option was set while it was freely available to all WPcom simple sites.
*
* @return bool True if we should enable legacy usage, false otherwise.
*/
public static function has_legacy_front_page_meta() {
return ! self::is_enabled_jetpack_seo() && get_option( self::LEGACY_META_OPTION );
}
/**
* Returns front page meta description for current site.
*
* @return string Front page meta description string or empty string.
*/
public static function get_front_page_meta_description() {
if ( self::is_enabled_jetpack_seo() ) {
$front_page_meta = get_option( self::FRONT_PAGE_META_OPTION );
return $front_page_meta ? $front_page_meta : get_option( self::LEGACY_META_OPTION, '' );
}
// Support legacy usage for WPcom simple sites.
return get_option( self::LEGACY_META_OPTION, '' );
}
/**
* Sanitizes the custom front page meta description input.
*
* @param string $value Front page meta string.
*
* @return string The sanitized string.
*/
public static function sanitize_front_page_meta_description( $value ) {
return wp_strip_all_tags( $value );
}
/**
* Updates the site option value for front page meta description.
*
* @param string $value New value for front page meta description.
*
* @return string Saved value, or empty string if no update was performed.
*/
public static function update_front_page_meta_description( $value ) {
$front_page_description = self::sanitize_front_page_meta_description( $value );
/**
* Can be used to limit the length of front page meta description.
*
* @module seo-tools
*
* @since 4.4.0
*
* @param int Maximum length of front page meta description. Defaults to 300.
*/
$description_max_length = apply_filters( 'jetpack_seo_front_page_description_max_length', 300 );
if ( function_exists( 'mb_substr' ) ) {
$front_page_description = mb_substr( $front_page_description, 0, $description_max_length );
} else {
$front_page_description = substr( $front_page_description, 0, $description_max_length );
}
$can_set_meta = self::is_enabled_jetpack_seo();
$legacy_meta_option = get_option( self::LEGACY_META_OPTION );
$has_old_meta = ! empty( $legacy_meta_option );
$option_name = self::has_legacy_front_page_meta() ? self::LEGACY_META_OPTION : self::FRONT_PAGE_META_OPTION;
$did_update = update_option( $option_name, $front_page_description );
if ( $did_update && $has_old_meta && $can_set_meta ) {
// Delete legacy option if user has switched to Business or eCommerce plan and updated the front page meta description.
delete_option( self::LEGACY_META_OPTION );
}
if ( $did_update ) {
return $front_page_description;
}
return '';
}
}
|