Version Description
Download this release
Release Info
Developer | cifi |
Plugin | SEO SQUIRRLY™ |
Version | 11.1.07 |
Comparing to | |
See all releases |
Code changes from version 11.1.06 to 11.1.07
- classes/RemoteController.php +1 -1
- controllers/Menu.php +3 -0
- controllers/Snippet.php +7 -1
- core/BlockConnect.php +3 -0
- models/Compatibility.php +14 -4
- models/services/JsonLD.php +2 -0
- models/services/Noindex.php +6 -4
- models/services/OpenGraph.php +19 -0
- readme.txt +611 -320
- squirrly.php +3 -3
- view/Blocks/Account.php +1 -13
- view/Connect/GoogleAnalytics.php +1 -1
classes/RemoteController.php
CHANGED
@@ -50,7 +50,7 @@ class SQ_Classes_RemoteController {
|
|
50 |
|
51 |
//call it with http to prevent curl issues with ssls
|
52 |
$url = self::cleanUrl(_SQ_APIV2_URL_ . $module . "?" . $parameters);
|
53 |
-
|
54 |
if (!isset(self::$cache[md5($url)])) {
|
55 |
if ($options['method'] == 'post') {
|
56 |
$options['body'] = $args;
|
50 |
|
51 |
//call it with http to prevent curl issues with ssls
|
52 |
$url = self::cleanUrl(_SQ_APIV2_URL_ . $module . "?" . $parameters);
|
53 |
+
|
54 |
if (!isset(self::$cache[md5($url)])) {
|
55 |
if ($options['method'] == 'post') {
|
56 |
$options['body'] = $args;
|
controllers/Menu.php
CHANGED
@@ -81,6 +81,9 @@ class SQ_Controllers_Menu extends SQ_Classes_FrontController {
|
|
81 |
wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
|
82 |
die();
|
83 |
}
|
|
|
|
|
|
|
84 |
}
|
85 |
|
86 |
} catch (Exception $e) {
|
81 |
wp_redirect(SQ_Classes_Helpers_Tools::getAdminUrl('sq_dashboard'));
|
82 |
die();
|
83 |
}
|
84 |
+
|
85 |
+
//Connect to cloud with an unique Token for API access
|
86 |
+
SQ_Classes_ObjController::getClass('SQ_Core_BlockConnect')->connectToCloud();
|
87 |
}
|
88 |
|
89 |
} catch (Exception $e) {
|
controllers/Snippet.php
CHANGED
@@ -41,6 +41,11 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
|
|
41 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('patterns', array('trigger' => true, 'media' => 'all'));
|
42 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet', array('trigger' => true, 'media' => 'all'));
|
43 |
|
|
|
|
|
|
|
|
|
|
|
44 |
return $this->getView('Blocks/Snippet');
|
45 |
}
|
46 |
|
@@ -62,8 +67,9 @@ class SQ_Controllers_Snippet extends SQ_Classes_FrontController {
|
|
62 |
|
63 |
|
64 |
/**
|
65 |
-
* Set the post in
|
66 |
* @param $post
|
|
|
67 |
*/
|
68 |
public function setPost($post) {
|
69 |
$this->post = $post;
|
41 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('patterns', array('trigger' => true, 'media' => 'all'));
|
42 |
SQ_Classes_ObjController::getClass('SQ_Classes_DisplayController')->loadMedia('snippet', array('trigger' => true, 'media' => 'all'));
|
43 |
|
44 |
+
global $post;
|
45 |
+
if(isset($post->ID) && $post->ID > 0) {
|
46 |
+
$this->post = SQ_Classes_ObjController::getClass('SQ_Models_Frontend')->setPost($post)->getPost();
|
47 |
+
}
|
48 |
+
|
49 |
return $this->getView('Blocks/Snippet');
|
50 |
}
|
51 |
|
67 |
|
68 |
|
69 |
/**
|
70 |
+
* Set the post in SEO Snippet for Bulk SEO
|
71 |
* @param $post
|
72 |
+
* @return $this
|
73 |
*/
|
74 |
public function setPost($post) {
|
75 |
$this->post = $post;
|
core/BlockConnect.php
CHANGED
@@ -38,6 +38,9 @@ class SQ_Core_BlockConnect extends SQ_Classes_BlockController {
|
|
38 |
$apiUrl = trim(parse_url(rest_url(),PHP_URL_PATH),'/');
|
39 |
}
|
40 |
|
|
|
|
|
|
|
41 |
if ($token = SQ_Classes_RemoteController::getCloudToken(array('wp-json' => $apiUrl))) {
|
42 |
if(isset($token->token) && $token->token <> '') {
|
43 |
SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_token', $token->token);
|
38 |
$apiUrl = trim(parse_url(rest_url(),PHP_URL_PATH),'/');
|
39 |
}
|
40 |
|
41 |
+
//Make sure the website exists on the Cloud
|
42 |
+
SQ_Classes_RemoteController::connect();
|
43 |
+
|
44 |
if ($token = SQ_Classes_RemoteController::getCloudToken(array('wp-json' => $apiUrl))) {
|
45 |
if(isset($token->token) && $token->token <> '') {
|
46 |
SQ_Classes_Helpers_Tools::saveOptions('sq_cloud_token', $token->token);
|
models/Compatibility.php
CHANGED
@@ -35,11 +35,21 @@ class SQ_Models_Compatibility {
|
|
35 |
add_action('template_redirect', array($this, 'setBuddyPressPage'), PHP_INT_MAX);
|
36 |
}
|
37 |
|
|
|
|
|
|
|
|
|
|
|
38 |
//Compatibility with Cachify plugin
|
39 |
if (SQ_Classes_Helpers_Tools::isPluginInstalled('cachify/cachify.php')) {
|
40 |
add_filter('sq_lateloading', '__return_true');
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
|
|
43 |
//Compatibility with WP Super Cache plugin
|
44 |
global $wp_super_cache_late_init;
|
45 |
if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
|
@@ -217,13 +227,13 @@ class SQ_Models_Compatibility {
|
|
217 |
if ($post_id) {
|
218 |
$sq_woocommerce = array();
|
219 |
foreach ($this->wc_inventory_fields as $field => $details) {
|
220 |
-
if
|
221 |
-
$sq_woocommerce[$field] = $
|
222 |
}
|
223 |
}
|
224 |
foreach ($this->wc_advanced_fields as $field => $details) {
|
225 |
-
if
|
226 |
-
$sq_woocommerce[$field] = $
|
227 |
}
|
228 |
}
|
229 |
if (!empty($sq_woocommerce)) {
|
35 |
add_action('template_redirect', array($this, 'setBuddyPressPage'), PHP_INT_MAX);
|
36 |
}
|
37 |
|
38 |
+
//Compatibility with TranslatePress Plugin
|
39 |
+
if (SQ_Classes_Helpers_Tools::isPluginInstalled('translatepress-multilingual/index.php')) {
|
40 |
+
add_filter('sq_lateloading', '__return_true');
|
41 |
+
}
|
42 |
+
|
43 |
//Compatibility with Cachify plugin
|
44 |
if (SQ_Classes_Helpers_Tools::isPluginInstalled('cachify/cachify.php')) {
|
45 |
add_filter('sq_lateloading', '__return_true');
|
46 |
}
|
47 |
|
48 |
+
//Compatibility with Oxygen plugin
|
49 |
+
if (SQ_Classes_Helpers_Tools::isPluginInstalled('oxygen/functions.php')) {
|
50 |
+
add_filter('sq_lateloading', '__return_true');
|
51 |
+
}
|
52 |
+
|
53 |
//Compatibility with WP Super Cache plugin
|
54 |
global $wp_super_cache_late_init;
|
55 |
if (isset($wp_super_cache_late_init) && $wp_super_cache_late_init == 1 && !did_action('init')) {
|
227 |
if ($post_id) {
|
228 |
$sq_woocommerce = array();
|
229 |
foreach ($this->wc_inventory_fields as $field => $details) {
|
230 |
+
if(SQ_Classes_Helpers_Tools::getIsset('_sq_wc_' . $field)){
|
231 |
+
$sq_woocommerce[$field] = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, '');
|
232 |
}
|
233 |
}
|
234 |
foreach ($this->wc_advanced_fields as $field => $details) {
|
235 |
+
if(SQ_Classes_Helpers_Tools::getIsset('_sq_wc_' . $field)){
|
236 |
+
$sq_woocommerce[$field] = SQ_Classes_Helpers_Tools::getValue('_sq_wc_' . $field, '');
|
237 |
}
|
238 |
}
|
239 |
if (!empty($sq_woocommerce)) {
|
models/services/JsonLD.php
CHANGED
@@ -1347,6 +1347,8 @@ class SQ_Models_Services_JsonLD extends SQ_Models_Abstract_Seo {
|
|
1347 |
$markup['brand'] = $otherbrands;
|
1348 |
}
|
1349 |
|
|
|
|
|
1350 |
return $markup;
|
1351 |
|
1352 |
} catch (Exception $e) {
|
1347 |
$markup['brand'] = $otherbrands;
|
1348 |
}
|
1349 |
|
1350 |
+
|
1351 |
+
|
1352 |
return $markup;
|
1353 |
|
1354 |
} catch (Exception $e) {
|
models/services/Noindex.php
CHANGED
@@ -30,10 +30,12 @@ class SQ_Models_Services_Noindex extends SQ_Models_Abstract_Seo {
|
|
30 |
$robots[1] = 'follow';
|
31 |
}
|
32 |
|
33 |
-
if(
|
34 |
-
if(
|
35 |
-
|
36 |
-
|
|
|
|
|
37 |
}
|
38 |
}
|
39 |
|
30 |
$robots[1] = 'follow';
|
31 |
}
|
32 |
|
33 |
+
if(false) { //don't implement it now. Seems to be issues with this option
|
34 |
+
if ($this->_post->term_id && SQ_Classes_Helpers_Tools::getOption('sq_term_noindex_empty')) {
|
35 |
+
if (function_exists('have_posts') && !have_posts()) {
|
36 |
+
$robots[0] = 'noindex';
|
37 |
+
$robots[1] = 'nofollow';
|
38 |
+
}
|
39 |
}
|
40 |
}
|
41 |
|
models/services/OpenGraph.php
CHANGED
@@ -168,9 +168,28 @@ class SQ_Models_Services_OpenGraph extends SQ_Models_Abstract_Seo {
|
|
168 |
$currency = 'USD';
|
169 |
$regular_price = $sale_price = $price = $sales_price_from = $sales_price_to = 0;
|
170 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
if (method_exists($product, 'get_regular_price')) {
|
172 |
$regular_price = $product->get_regular_price();
|
173 |
}
|
|
|
174 |
if (method_exists($product, 'get_sale_price')) {
|
175 |
$sale_price = $product->get_sale_price();
|
176 |
if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from') && method_exists($product, 'get_date_on_sale_to')) {
|
168 |
$currency = 'USD';
|
169 |
$regular_price = $sale_price = $price = $sales_price_from = $sales_price_to = 0;
|
170 |
|
171 |
+
|
172 |
+
//Product ID
|
173 |
+
$og['product:retailer_item_id'] = (method_exists($product, 'get_sku')) ? ($product->get_sku() <> '' ? $product->get_sku() : '') : '';
|
174 |
+
|
175 |
+
//Product Brand
|
176 |
+
$sq_woocommerce = get_post_meta($this->_post->ID, '_sq_woocommerce', true);
|
177 |
+
if (isset($sq_woocommerce['brand']) && $sq_woocommerce['brand'] <> '') {
|
178 |
+
$og['brand'] = $sq_woocommerce['brand'];
|
179 |
+
}
|
180 |
+
|
181 |
+
if (method_exists($product, 'is_on_backorder') && $product->is_on_backorder() ) {
|
182 |
+
$og['product:availability'] = __( 'On backorder', 'woocommerce' );
|
183 |
+
} elseif (method_exists($product, 'is_in_stock') && $product->is_in_stock() ) {
|
184 |
+
$og['product:availability'] = __( 'In stock', 'woocommerce' );
|
185 |
+
} else {
|
186 |
+
$og['product:availability'] = __( 'Out of stock', 'woocommerce' ) ;
|
187 |
+
}
|
188 |
+
|
189 |
if (method_exists($product, 'get_regular_price')) {
|
190 |
$regular_price = $product->get_regular_price();
|
191 |
}
|
192 |
+
|
193 |
if (method_exists($product, 'get_sale_price')) {
|
194 |
$sale_price = $product->get_sale_price();
|
195 |
if ($sale_price > 0 && method_exists($product, 'get_date_on_sale_from') && method_exists($product, 'get_date_on_sale_to')) {
|
readme.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
===SEO
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
-
Tags:
|
4 |
Requires at least: 4.3
|
5 |
Tested up to: 5.8
|
6 |
Stable tag: trunk
|
@@ -8,335 +8,583 @@ Requires PHP: 5.6
|
|
8 |
License: GPLv2 or later
|
9 |
Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
|
10 |
|
11 |
-
|
12 |
|
13 |
== Description ==
|
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 |
-
https://www.youtube.com/watch?v=m2R2d2Q4Sfk
|
54 |
-
|
55 |
-
**Your next SEO Plugin is NOT just an SEO Plugin.**
|
56 |
-
It's a Non-Human Private SEO Consultant.
|
57 |
Powered by Machine Learning and Cloud Services.
|
58 |
-
It's the First of its kind.
|
59 |
-
It's the new Squirrly 2021: Smart Strategy and it lives and works inside your WordPress.
|
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 |
-
- a **FREE Education Cloud** (learn everything about optimizing for Humans and for Search Engine Bots)
|
115 |
-
- **Free coaching sessions**
|
116 |
-
- a 14 Days Journey to Better Ranking. **14 daily recipes to follow** to make your WordPress site ready for high-performing SEO.
|
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 |
We've truly made SEO Uncomplicated.
|
341 |
|
342 |
|
@@ -406,6 +654,14 @@ Type a keyword to the right of the screen and start using Squirrly Seo. Enjoy!
|
|
406 |
9. Squirrly SEO - Progress & Achievements
|
407 |
|
408 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
= 11.1.06- 07/13/2021 =
|
410 |
Update - Compatibility with Divi and Fusion plugins
|
411 |
Update - Update Readme file and plugin description
|
@@ -804,124 +1060,159 @@ For higher content marketing and SEO needs, you can check our Official Site and
|
|
804 |
|
805 |
== Frequently Asked Questions ==
|
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 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
-
|
879 |
-
|
880 |
-
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
=
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
|
926 |
= Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies? =
|
927 |
|
1 |
+
===SEO by Squirrly - Best AI WordPress SEO Plugin 2021 - Rank Faster With AI SEO Strategy===
|
2 |
Contributors: cifi, calinvingan, florinmuresan, nagy.sorel
|
3 |
+
Tags: SEO, XML Sitemap, Content Analysis, Google Search Console, Schema
|
4 |
Requires at least: 4.3
|
5 |
Tested up to: 5.8
|
6 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
Donate link: https://plugin.squirrly.co/squirrly-seo-pricing/
|
10 |
|
11 |
+
The Ultimate WordPress SEO plugin. Get the most SEO tools under one roof. Optimize SEO traffic & Boost SEO rankings using the power of A.I.
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
### Squirrly SEO: the #1 AI WordPress SEO plugin
|
16 |
|
17 |
+
Your **SEO challenges** - solved.
|
18 |
|
19 |
+
Squirrly’s mission is **Never Fail at SEO**. Our AI SaaS + plugin’s users range from the auto repair shop around the corner to some of the most popular sites on the planet.
|
20 |
|
21 |
+
SEO continues to be one the most reliable sources of traffic. Unlike ads that stop bringing you traffic when your budget runs out, creating and implementing an SEO strategy for your WordPress site sets you up for long-term success.
|
22 |
+
But SEO can be a tough nut to crack. Unless you’re using a **complete WordPress SEO plugin** that was created with YOUR SEO challenges in mind.
|
23 |
|
24 |
+
https://www.youtube.com/watch?v=h1EwXjOHY0M
|
25 |
|
26 |
+
<a title="Benefits of Using the Best WordPress SEO Plugin" href="https://plugin.squirrly.co/">BENEFITS</a> / <a title="Success with SEO Tools from Squirrly" href="https://www.squirrly.co/successful/">CUSTOMER SUCCESS</a> / <a title="Compare to WordPress SEO Plugins like Yoast RankMath SEOPress" href="https://plugin.squirrly.co/compare/">COMPARE</a> / <a title="SEO Plugin Features" href="https://www.squirrly.co/wordpress/plugins/seo/">ALL FEATURES</a> / <a title="Try a Demo without installing on your WordPress" href="https://demo.seoplugin.xyz/">DEMO</a>
|
27 |
|
28 |
+
We built Squirrly SEO to help everyone, regardless of their level of SEO knowledge and expertise, get access to **ALL the SEO tools** and **ALL the guidance** they need to take charge of SEO, optimize, and gain more traffic for their sites.
|
29 |
|
30 |
+
#### DO ANY OF THESE SOUND FAMILIAR?
|
31 |
|
32 |
+
"I already have an endless list of must-solve right now to-dos. I want to have time to run my business - not spend my life doing SEO for my website. "
|
33 |
|
34 |
+
“I feel intimidated by SEO and its complexity. I never know if what I'm doing is making an impact. "
|
35 |
|
36 |
+
“I know WordPress SEO is important, but I struggle to understand all the pieces and how they work together on my own.”
|
37 |
|
38 |
+
“SEO is like working out. Necessary but boring and tedious. It’s tough to get motivated so SEO never gets done.”
|
39 |
|
40 |
+
**If you can relate** to any of the struggles mentioned here or if you're simply looking for an SEO solution that isn't just fine but actually GREAT - **it's time you met Squirrly**.
|
41 |
|
42 |
+
★★★★★
|
43 |
|
44 |
+
**Guaranteed to help you Rank Faster. Start your optimization journey to boost performance and drive more organic traffic to your site today.**
|
45 |
|
46 |
+
"I purchased Squirrly on April 28th 2021 and as of the morning of May 19th 2021 traffic to my site has increased by nearly 10X compared to traffic for the month of April."
|
47 |
|
48 |
+
**Reed Floren** (Online Marketing Expert at Jarvis.AI, Best Selling co-author)
|
49 |
|
50 |
+
### Squirrly SEO is an AI-powered, all-in-one SEO suite that takes the guesswork out of search engine optimization.
|
51 |
|
52 |
+
Optimize your WordPress, and take the shortest path to the 1st page of Google Search with data-driven SEO goals from an A.I. consultant.
|
53 |
|
|
|
|
|
|
|
|
|
54 |
Powered by Machine Learning and Cloud Services.
|
|
|
|
|
55 |
|
56 |
+
- Get the **perfect WordPress SEO setup** - instantly! Over 650 features for SEO pre-configured for you during install.
|
57 |
+
- **All hand-holding.** Completely educational. Squirrly provides a fail-proof, paint-by-numbers way of managing and improving your site’s SEO.
|
58 |
+
- Access **customized to-dos from an A.I. SEO consultant** for better rankings, plus step-by-step guidance on implementation.
|
59 |
|
60 |
+
Use one tool for keyword research, SEO content optimization, content analysis, SEO guidance, technical SEO, site audits, rank tracking, and more.
|
61 |
|
62 |
+
Optimize your entire WordPress website with Squirrly SEO.
|
63 |
|
64 |
+
**Perfect for**: small business owners, content creators, bloggers, freelancers, and agencies looking to access clear guidelines for improving their SEO.
|
65 |
|
66 |
+
#### Recommended by Thousands of Happy Users
|
67 |
|
68 |
+
**Squirrly SEO is the Popular WordPress SEO plugin that NON-SEO Experts use to boost their search engine traffic.** Offers the same level of advice as a Human consultant would, yet with greater precision and customization.
|
69 |
|
70 |
+
Reach SEO success by following the **Daily SEO Goals** and using Squirrly's built-in SEO tools to get higher Rankings with less effort.
|
71 |
|
72 |
+
Join a huge community of successful users who are ranking on the first page of Google Search with Squirrly SEO.
|
73 |
|
74 |
+
<a title="Success with SEO Tools from Squirrly" href="https://www.squirrly.co/successful/">See Success Stories from WordPress Users Who Followed Squirrly’s Advice here (click) </a>
|
75 |
|
76 |
+
https://www.youtube.com/watch?v=eKqiYMHpIB4
|
77 |
|
78 |
+
https://www.youtube.com/watch?v=kPpZmKra0T0
|
79 |
|
80 |
+
<h3>2021 Awards and Recognition</h3>
|
81 |
|
82 |
+
✔ <strong><a title="G2 Awards for WordPress SEO Plugin by Squirrly" href="https://www.squirrly.co/g2-awards-squirrly-seo-the-high-performer-medal/">Squirrly SEO has been named a High Performer for Summer 2021 on G2</a></strong>
|
83 |
+
✔ <strong><a title="Gartner Awards for WordPress SEO Plugin by Squirrly" href="https://www.squirrly.co/gartner-digital-markets-ranks-squirrly-seo-as-a-top-product-in-its-category/">Gartner Digital Markets Ranks Squirrly SEO as a Top Product in SEO worldwide, among other SaaS</a></strong>
|
84 |
+
✔ <strong><a title="Capterra Awards for WordPress SEO Plugin by Squirrly" href="Squirrly SEO Listed among the Best SEO Tools of 2021 in New Capterra Shortlist Report">Squirrly SEO Listed among the Best SEO Tools of 2021 in New Capterra Shortlist Report</a></strong>
|
85 |
+
✔ <strong><a title="ProductHunt Awards for WordPress SEO Plugin by Squirrly" href="https://www.producthunt.com/posts/squirrly-next-seo-goals">Product Hunt: 1st Place in all of the following categories: SEO Tools, WordPress, Virtual Assistants</a></strong>
|
86 |
+
✔ <strong><a title="All Awards for Squirrly" href="https://plugin.squirrly.co/squirrly-awards/">Check out all the Awards of Squirrly SEO 2021</a></strong>
|
87 |
+
✔ <strong><a title="WordPress SEO Plugin by the best SaaS Company" href="https://www.squirrly.co/best-saas-companies/">Built, Supported and Innovated by one of the Best SaaS Companies and 7,479 Subscription-paying customers</a></strong>
|
88 |
|
89 |
+
★★★★★
|
90 |
+
**"Fantastic results using Squirrly SEO"**
|
91 |
+
What problems are you solving with the product? What benefits have you realized?
|
92 |
|
93 |
+
Problem: low rankings for some pages and keywords - solved.
|
94 |
+
Problem: because of low rankings, traffic was lower - solved.
|
95 |
|
96 |
+
Jakob Thusgaard (founder and CEO)
|
97 |
+
(testimonial source: G2)
|
98 |
|
99 |
+
<h3>Does everything you need it - and more. Without slowing down your site.</h3>
|
100 |
+
Squirrly SEO brings the most SEO tools under one roof - and is the ONLY software on the market right now that gives you **the complete SEO funnel**.
|
101 |
|
102 |
+
Meaning:
|
103 |
|
104 |
+
Helps you take clients searching on Google all the way through to your money-maker pages.
|
105 |
|
106 |
+
https://plugin.squirrly.co/compare/
|
107 |
|
108 |
+
^^ use it to see the Complete SEO Funnel and check out key differences: Squirrly SEO vs other SEO tools.
|
109 |
|
110 |
+
All the important SEO Tools you can find in SEMrush, Moz, Ahrefs in Your WordPress Dashboard.
|
111 |
|
112 |
+
<a title="Faster than all other WP SEO Plugins" href="https://howto.squirrly.co/faq/is-squirrly-seo-a-heavy-plugin/">SEE our speed test.</a> Loading time is excellent and we tested this during a live session.
|
113 |
|
114 |
+
"Comparable" tools don't even come close to what Squirrly SEO offers.
|
115 |
|
116 |
+
From keyword research to SEO content optimization, content analysis, SEO suggestions, SEO settings, website Audits, and rank tracking - Squirrly offers the most SEO tools and functionality to **cover all your SEO needs in one place**.
|
117 |
|
118 |
+
This eliminates the need to install many different plugins and helps you optimize your workflow so that you can be more efficient with your SEO efforts.
|
119 |
|
120 |
+
> * Want to do keyword research and find the best keywords to target based on real data such as competition, chances of ranking, and more?
|
|
|
|
|
|
|
121 |
|
122 |
+
You can do that with Squirrly!
|
123 |
|
124 |
+
**Our keyword research data is fresh**, since we don’t use cached databases. Our maximum caching time is about 48 hours, not a whole year or two like you find in other tools.
|
125 |
|
126 |
+
As we use Google Trends and Google API and run them through our Proprietary TECH to define search volumes and more, Social Media for discussions, the data will be FRESH every time.
|
127 |
|
128 |
+
^^ we **have our very own algorithms to offer the industry's best data** when it comes to Keyword Research. We've been building research algorithms since 2012.
|
129 |
|
130 |
+
> * Want a place to save and organize the best keywords you find?
|
131 |
|
132 |
+
With Squirrly, you have a dedicated place to store your keywords and quickly organize them using Labels so that you have a clear view of your SEO strategies.
|
133 |
|
134 |
+
> * Want an easy way to do On-Page SEO?
|
135 |
|
136 |
+
Squirrly's SEO Live Assistant does content analysis in real-time and generates suggestions for your content on the fly while also checking for readability. This is the easiest, most guided way of creating SEO content that both search engines and humans will love.
|
137 |
|
138 |
+
> * Excellent SEO? Wondering if your pages are fully optimized to reach SEO success? Not sure whether you're focusing on the right things or not?
|
139 |
|
140 |
+
Focus Pages **connects the dots between many sides of SEO**. It scans your content to show you page-specific tasks you need to complete to improve your chances of ranking.
|
141 |
|
142 |
+
The system takes into account over 113 Ranking Factors to give you a complete analysis of your pages. This is next-level content analysis.
|
143 |
|
144 |
+
**There's more... **
|
145 |
|
146 |
+
> * Want to audit your site to see how it performs across key areas such as Blogging, Traffic, Links, and SEO?
|
147 |
|
148 |
+
Squirrly will analyze your site's performance and give you a score based on what it uncovers. Plus - clear guidance on how you can improve in the areas where you're falling behind.
|
149 |
|
150 |
+
**SaaS + Plugin configuration allows us to crawl** everything related to your site and our Proprietary Market Intelligence feature helps us score your site realistically with real performance indicators.
|
151 |
|
152 |
+
> * Want to know if your work has translated into higher rankings?
|
153 |
|
154 |
+
Squirrly answers your questions with powerful graphics, Ranking data, and success & achievements messages that allow you to see and feel your progress.
|
155 |
|
156 |
+
Squirrly integrates with Google Search Console to bring you powerful data right inside WordPress.
|
157 |
|
158 |
+
^^ however, Squirrly uses GSC data to enhance our own **algorithms and proprietary technology + AI, which we developed ourselves.**
|
159 |
|
160 |
+
This is not a Google Search Console data visualization plugin. We offer you real SEO insight based on technology owned and developed by the Squirrly Company.
|
161 |
|
162 |
+
> * Want to know how many people click on your listing in Search Results - and how much traffic you're getting?
|
163 |
|
164 |
+
Squirrly will show you exact numbers so that you can turn data into decisions and plan your next moves with confidence.
|
165 |
|
166 |
+
A lot more...
|
167 |
|
168 |
+
★★★★★
|
169 |
|
170 |
+
**"I've used many other SEO plugins out there: Yoast, Rank Math, WP All in One SEO, but Squirrly has outclassed them all."**
|
171 |
|
172 |
+
I'm a Search Engine Optimization professional with 4 years of experience and from now on this product will be my go-to when implementing SEO strategies for my clients.
|
173 |
+
It's extremely easy to use, self-explanatory, and will definitely work great for those who don't have much SEO experience.
|
174 |
|
175 |
+
**Zuzanna Kruger** (SEO professional)
|
176 |
|
177 |
+
(testimonial source: Product Hunt)
|
178 |
|
179 |
+
<h3>In fact, Squirrly covers everything you need to optimize and be successful with WordPress SEO.</h3>
|
180 |
|
181 |
+
Over 650 features pre-configured for you during install, so that you don't have to work on configurations!
|
182 |
|
183 |
+
Squirrly SEO has all important settings done for you right as you start and complete the setup wizard.
|
184 |
|
185 |
+
No need to go back and forth between tabs to do keyword research, create SEO content, completely optimize your website and pages, and track their SEO performance.
|
186 |
|
187 |
+
SEO optimization has never been easier.
|
188 |
|
189 |
+
> - DO IT ALL WITH ONE TOOL -
|
190 |
+
>
|
191 |
+
> * Key default SEO settings configured for you during install
|
192 |
+
> * Keyword Research
|
193 |
+
> * Keyword portfolio
|
194 |
+
> * Guided On-Page optimization
|
195 |
+
> * SEO content grading
|
196 |
+
> * In-depth SEO Content Analysis
|
197 |
+
> * Readability analysis: SEO Live Assistant makes sure your content is not just Google friendly but also human-friendly. The Human-Friendly item checks your text for semantic readability.
|
198 |
+
> * SEO Content Optimization
|
199 |
+
> * Blog post research
|
200 |
+
> * Copyright-free Images
|
201 |
+
> * Optimize for multiple keywords
|
202 |
+
> * On Page SEO METAs (including meta title and meta description)
|
203 |
+
> * Customize the META Description and Meta Title for each URL on your website using the Squirrly SEO Snippet, Squirrly > SEO Settings > Automation
|
204 |
+
> * Full control over your meta title and meta description
|
205 |
+
> * SEO Automation for Meta Title
|
206 |
+
> * Easy to define the meta description (create a unique, accurate meta description) when doing SEO so that Google will better understand what your page is about.
|
207 |
+
> * Open Graph feature allows you to control how you want your post to look like when users share your content.
|
208 |
+
> * Option to automate
|
209 |
+
> * Open Graph (Open Graph Preview, Open Graph BULK work-flow, Open Graph Automation with different rules according to different custom post types, Open Graph object Type, Open Graph and fb admin page id, Open Graph and author URL, Open Graph with VIDEO, which makes the video PLAY directly inside Facebook, Open Graph Validation)
|
210 |
+
> * Twitter Card (Twitter Card validation, Twitter Card – large, Twitter Card – summary, Twitter Card Bulk work-flow, Twitter Card Automation with different rules according to different custom post types, Twitter Card Preview)
|
211 |
+
> * Option to define custom META Lengths (for meta title and meta description)
|
212 |
+
> * Internal linking suggestions
|
213 |
+
> * Redirection features: 301 Redirect
|
214 |
+
> * Redirection features: redirect broken pages to a default URL
|
215 |
+
> * SEO Automation for 404 Pages
|
216 |
+
> * Optimize based on SEO Suggestions
|
217 |
+
> * Custom, AI-Driven SEO Goals generated for your site and pages
|
218 |
+
> * Advanced SEO Audits
|
219 |
+
> * Continuous SEO Oversight - unprecedented level of SEO Protection
|
220 |
+
> * Keyword rank tracking
|
221 |
+
> * Success messages and achievements graphics
|
222 |
+
> * Warnings against over 113 types of ranking drawbacks
|
223 |
+
> * Google Search Console integration. Squirrly SEO makes it easy to access key website performance metrics right inside WordPress by integrating with Google Search Console.
|
224 |
+
> * Google Analytics integration. Squirrly integrates with Google Analytics to bring you must-know data about your pages, making it easy to monitor performance.
|
225 |
+
> * Squirrly also shows you Traffic Data for every Page you add as a Focus Page (in the Traffic Health Section) – alongside bounce rate data and time-on-page data. All this data is retrieved from Google Analytics via the Google Analytics integration.
|
226 |
+
> * Google Analytics tracking with custom rules for custom pages
|
227 |
+
> * Google Analytics tracking fixes included with the 14 Days Journey
|
228 |
+
> * Google Analytics FULL integrations, to get accurate Traffic Data in the SEO Audit and to get accurate Google Search Engine readings for quality SEO content (as I said: we look for “quality SEO content” the same way that Google does.
|
229 |
+
> * Most advanced XML Sitemap (Pictures in XML Sitemap, XML Sitemap enhanced with Videos, XML Sitemap settings for frequency with which you add new content to the site, XML Sitemap to get you in Google News, XML Sitemap with organized sub-sitemaps, XML Sitemap with Page-Level customization options, XML Sitemap inclusions / exclusions according to rules based on Custom post Types and Automation Features)
|
230 |
+
> * Option to Remove no-index pages from the XML Sitemap at an URL level
|
231 |
+
> * Structured Data (Schema Markup)
|
232 |
+
> * Multiple types of schema org JSON-LD implementations you can make
|
233 |
+
> * Configure the JSON-LD Types in SEO Automation
|
234 |
+
> * Custom JSON-LD Schema Code implementation
|
235 |
+
> * Build and validate JSON-LD schema
|
236 |
+
> * woocommerce ++ added more JSON-LD schema features for our available implementation
|
237 |
+
> * Improve the WooCommerce Product and Orders JSON-LD Schema with the required data.
|
238 |
+
> * Add default data for JSON-LD AggregateRating, Offers, SKU, MPN when they are missing from the product to avoid Google Search Console errors.
|
239 |
+
> * Add Breadcrumbs Schema in JSON-LD
|
240 |
+
> * Select multiple JSON-LD schema types for a single post type
|
241 |
+
> * Enable Squirrly to include additional metadata fields for WooCommerce Products Inventory Section
|
242 |
+
> * SEO Automation
|
243 |
+
> * Automatic redirection features
|
244 |
+
> * Customize SEO in bulk
|
245 |
+
> * Correct the SEO for the entire website in minutes
|
246 |
+
> * Meta Robots Tags [noindex, nofollow]
|
247 |
+
> * Creating and managing Robots.txt
|
248 |
+
> * Rich Pins
|
249 |
+
> * Facebook Pixel advanced options for eCommerce
|
250 |
+
> * Set User Roles to limit access to Squirrly SEO functionality for Authors, Editors, Shop Manager, etc.
|
251 |
+
> * Translation Plugins Support — Squirrly works perfectly with popular translations plugins like WPML and Polylang.
|
252 |
+
> * Elementor SEO
|
253 |
+
> * Divi SEO
|
254 |
+
> * Brizy SEO
|
255 |
+
> * Oxygen SEO
|
256 |
+
> * WooCommerce SEO
|
257 |
+
> * Import SEO and Settings with just ONE click (safely migrate your data to Squirrly SEO from any of the following:
|
258 |
|
259 |
+
- Rank Math, Yoast, All in One SEO, SEO Framework, SEO Press, SEO Pressor, Add Meta Tags Plugin, Gregs High Performance SEO, Headspace 2, Platinum SEO Pack, SEO Title Tags, SEO Ultimate Plugin.
|
260 |
|
261 |
+
The list of SEO tools included in Squirrly SEO, the Ultimate WordPress SEO Plugin, goes on and on ..
|
262 |
|
263 |
+
+ <a title="See SEO Features" href="https://www.squirrly.co/wordpress/plugins/seo/">see 650 features that’ll help you optimize your site (click) </a>
|
264 |
|
265 |
+
★★★★★
|
266 |
+
"When you're new to SEO like me, some dark corners of content optimization can be hard to figure out. With Squirrly SEO's full suite of tools, all I have to do is follow their instructions."
|
267 |
|
268 |
+
It is straightforward, so anyone can use this easy-to-use tool by simply following the navigation they're given, giving you undeniable confidence that if you put work into your site, you will get the results you want!
|
269 |
|
270 |
+
Masatoshi Matsumiya (testimonial source: Product Hunt)
|
271 |
|
272 |
+
<h3>All the Features you need to Optimize + Clear Guidance on how to use them at the BEST time</h3>
|
273 |
|
274 |
+
Squirrly doesn't just offer a lot of features that you can use to optimize your entire website.
|
275 |
|
276 |
+
It also provides direction on how to maximize using those features to reach the 1st Page of Google Search faster.
|
277 |
|
278 |
+
#### Next SEO Goals -
|
279 |
|
280 |
+
Next SEO Goals shows you high-priority actions you need to take to improve the SEO of your site - and points to the exact SEO tools from Squirrly that you need to use to get the job done faster.
|
281 |
+
Everything is 100% guided. Squirrly shows you which of its features to use to solve specific, real problems that YOUR site and pages have.
|
282 |
|
283 |
+
By just using the Next SEO Goals feature, you ensure you discover the features from Squirrly SEO - at the best time - and use them to fix issues that hurt your chances of ranking.
|
284 |
|
285 |
+
#### Focus Pages -
|
286 |
|
287 |
+
Focus Pages provides in-depth content analysis to show you the fastest path to better rankings.
|
288 |
|
289 |
+
In Focus Pages, Squirrly takes you by the hand to show you exactly what you need to do and which features to use to turn Red Elements Green and improve your chances of ranking.
|
290 |
|
291 |
+
Plus, thanks to Squirrly’s Google Analytics integration, you will be able to see how your actions translate into more traffic to your pages.
|
292 |
+
|
293 |
+
#### 14 Days Journey to Better Rankings -
|
294 |
+
|
295 |
+
This gives you a blueprint for what you need to do and which SEO tools to use to bring one of your pages up in Rankings in just two weeks.
|
296 |
+
|
297 |
+
★★★★★
|
298 |
+
"Before discovering Squirrly SEO, my SEO tool of choice was Yoast. But I've never really felt using that SEO tool well as I am not an SEO expert and don't have the time to invest too many hours learning about SEO optimization."
|
299 |
+
That's why Squirrly came in to help me with that process: I like their guide and the steps explaining what to do next in order to get it working. That's great for me!
|
300 |
+
Gabriel Santos (testimonial source: Product Hunt)
|
301 |
+
|
302 |
+
<h3>Powerful yet Lightweight - Squirrly SEO loads faster than any other SEO plugin</h3>
|
303 |
+
|
304 |
+
The Squirrly SEO plugin doesn't impact your pagespeed - as it loads super fast with a WordPress site.
|
305 |
+
(demonstrated in the LIVE TEST below)
|
306 |
+
https://howto.squirrly.co/faq/is-squirrly-seo-a-heavy-plugin/
|
307 |
+
|
308 |
+
The advantage that enables Squirrly SEO to load faster than any other SEO plugin currently on the market:
|
309 |
+
|
310 |
+
This amazing feat is thanks to the SaaS + SEO plugin duality which is unique to Squirrly SEO.
|
311 |
+
|
312 |
+
650 Features in Squirrly SEO, but the processing and heavy lifting is done on Squirrly Limited (the company)’s private servers. That makes the WordPress SEO plugin load incredibly fast.
|
313 |
+
|
314 |
+
Also, from our tests, the Squirrly SEO plugin loads on the frontend in 0.005s if you’re not using a plugin for caching.
|
315 |
+
|
316 |
+
We integrated the Squirrly SEO plugin with the most popular plugins for caching like WP Super Cache, WP-Rocket, Autoptimize, W3 Total, and more. This way, the buffer only loads through the plugins for caching and the speed is not affected at all.
|
317 |
+
|
318 |
+
<h3>SEO feels like a dark art? With Squirrly, you don't have to do it alone</h3>
|
319 |
+
|
320 |
+
With so many variables at play, SEO can seem blindingly complex.
|
321 |
+
|
322 |
+
Like you're trying to solve one huge puzzle, and it's up to you to try and make sense of how all the pieces fit together.
|
323 |
+
|
324 |
+
It's easy to get overwhelmed by the breadth of knowledge and attention to detail necessary.
|
325 |
+
|
326 |
+
So many people end up putting SEO off over and over.
|
327 |
+
|
328 |
+
Not if you're using Squirrly.
|
329 |
+
|
330 |
+
With features such as Next SEO Goals and Focus Pages, Squirrly helps you navigate today's key ranking factors by providing you with a complete framework and step-by-step guidance for placing your pages at the top of Google Search.
|
331 |
+
|
332 |
+
It's like having an SEO expert in your WordPress site telling you what to do next to rank higher.
|
333 |
+
|
334 |
+
★★★★★
|
335 |
+
" I'm new to SEO and, to be honest, it felt a bit like jabbing into the dark, having no real idea how optimized my content is (or isn't). But with Squirrly's content editor, it's crystal clear what I need to do to rank.
|
336 |
+
|
337 |
+
After following its guidelines and rewriting some of my articles, one of them showed up on the first page of Google! "
|
338 |
+
|
339 |
+
It's a small win but one that gives me absolute confidence that if I put in the work, I'll get the SEO results I'm hoping for in due time.
|
340 |
+
|
341 |
+
Though, there is A LOT more to this tool than just the content editor. It really covers pretty much everything you need to do for on-page SEO stuff.
|
342 |
+
|
343 |
+
If you're new to SEO like I am, I suggest grabbing this.
|
344 |
+
|
345 |
+
Victor Mutta (testimonial source: Product Hunt)
|
346 |
+
|
347 |
+
<h3>Get actionable steps for topping the search engine rankings using the power of AI</h3>
|
348 |
+
|
349 |
+
Intimidated by SEO and its complexity?
|
350 |
+
|
351 |
+
Instead of feeling overwhelmed, you could start each day with a simple set of actionable Goals ready for you to complete.
|
352 |
+
|
353 |
+
Squirrly gives you clear directions and a step-by-step approach to implementing best practices for WordPress SEO.
|
354 |
+
|
355 |
+
Furthermore, it breaks everything down for you into small chunks and actionable tasks so nothing gets overwhelming.
|
356 |
+
|
357 |
+
All you have to do is follow the guidance to solve tasks and turn as many RED elements GREEN. It's really that simple.
|
358 |
+
|
359 |
+
★★★★★
|
360 |
+
" Squirrly is a great SEO plugin and I've tested quite a few SEO plugins, including Rank Math, SEO Press and Yoast. Their whole approach is different but somehow has the same important aspects. It works great! "
|
361 |
+
|
362 |
+
The focus feature is especially useful and I now include Squirrly on all my sites to get rankings on specific pages. Onboarding is a breeze as well and they have a step by step process to help you reach your SEO goals.
|
363 |
+
|
364 |
+
Muhammed Seitz (Web Developer)
|
365 |
+
|
366 |
+
(testimonial source: Product Hunt)
|
367 |
|
368 |
+
<h3>Reach the 1st Page of Google and actually have Fun getting there</h3>
|
369 |
|
370 |
+
You know SEO is important but just hearing the word optimize makes you want to gouge your eyes out? You're not alone.
|
371 |
|
372 |
+
Even if you have a clue of what you're doing and what you should be focusing on, Search Engine Optimization can still feel like a giant tedious ball of blah.
|
373 |
|
374 |
+
We wanted to change that, because if SEO feels like a repetitious chore - it's hard to stay consistent with your efforts.
|
375 |
|
376 |
+
Unlike other SEO tools that simply tell you to press this and that, Squirrly gamifies the SEO experience to help you turn SEO work into an exciting habit.
|
377 |
|
378 |
+
Every day, you'll get about 3 New, High-Priority SEO Goals that you have to accomplish to optimize your website - complete with step-by-step instructions on how to get the job done.
|
379 |
|
380 |
+
It's almost like playing a game.
|
381 |
|
382 |
+
And the prize?
|
383 |
|
384 |
+
Better rankings and increased organic traffic to your site. Consistently.
|
385 |
|
386 |
+
★★★★★
|
387 |
+
" I had fun understanding what happens to my pages and posts. I had fun finding keywords and working with them inside the tool and the way squirrly teaches you what to improve is fantastic."
|
388 |
|
389 |
+
I discovered things I never quite understood under seopress because you don’t tweak it. Results, I had a boost for 12 keywords on first page and 7 of them number 1 on google.
|
390 |
|
391 |
+
Jean-Pierre Michael (testimonial source: Facebook)
|
392 |
|
393 |
+
<h3>Learn SEO as You're Doing it</h3>
|
394 |
|
395 |
+
While other SEO plugins leave you to fend for yourself, Squirrly has a strong educational component - helping you learn while doing.
|
396 |
|
397 |
+
Using Squirrly is like taking a beginner-friendly masterclass in SEO with all of the SEO tools you need to properly optimize your website.
|
398 |
|
399 |
+
You're not just going through the moves, you're also acquiring the knowledge and experience needed to become an SEO expert at your own pace.
|
400 |
|
401 |
+
By walking step by step through the Squirrly guides, tasks, and suggestions - the ins and outs of SEO will start to reveal themselves to you more and more.
|
402 |
|
403 |
+
With every task you complete inside the WordPress SEO plugin, you'll make significant progress while also learning more about how SEO works, how to optimize, and why it's important to perform certain actions.
|
404 |
|
405 |
+
★★★★★
|
406 |
+
"Highly impressed with Squirrely SEO. Having used several SEO apps and platforms in the past, Squirrly SEO stands out as a must-install. I will be deleting Yoast and installing Squirrly SEO on all my sites."
|
407 |
|
408 |
+
Even while offering advanced features, Squirrely seems to be highly user-friendly and easy to use, even for those with no SEO experience. Squirrly SEO is by far the best I have seen.
|
409 |
|
410 |
+
The user interface is clean and informative. It educates while leading you through all aspects and features you will need to address on your website for peak SEO performance.
|
411 |
|
412 |
+
Simply turn red to green and your on your way to higher ranking.
|
413 |
|
414 |
+
Carlos Mandelaveitia (Sr Creative Director @ DIVI MEDIA)
|
415 |
|
416 |
+
(testimonial source: Product Hunt)
|
417 |
|
418 |
+
<h3>Add Precious Hours Back into Your Week</h3>
|
419 |
|
420 |
+
Using multiple SEO products scattered across tabs and spreadsheets doesn't just cost you time. It also makes it harder to stay focused and advance with your SEO efforts.
|
421 |
|
422 |
+
Not working on the SEO tasks that will generate the highest impact, or worse, working on tasks that are no longer relevant to how search engines work today also cuts into your hours.
|
423 |
+
|
424 |
+
With Squirrly, you'll be able to:
|
425 |
+
|
426 |
+
Do it all in one place. Squirrly covers all your SEO optimization needs, eliminating the need to juggle with a bunch of different products.
|
427 |
+
|
428 |
+
Not waste time figuring out which tools you should use for different pieces of the SEO puzzle. Squirrly's SEO tools all work as part of one big SEO optimization mechanism that's engineered to get you higher rankings.
|
429 |
+
|
430 |
+
Focus on the tasks that will put your site on the fastest track to improved rankings.
|
431 |
+
|
432 |
+
That means: it will be easier to optimize your entire website and get better results with less time input.
|
433 |
+
|
434 |
+
★★★★★
|
435 |
+
" Squirrly SEO is an AI-powered online marketing and SEO tool that finds the best opportunities for your business and delivers you high-quality backlinks, content suggestions, and website optimization tools to grow your online presence."
|
436 |
+
|
437 |
+
It is the perfect choice for those who want to focus on achieving real business results and don’t have time to waste running around managing backlinks and content-related SEO activities.
|
438 |
+
|
439 |
+
With Squirrly SEO’s smart tool, you can finally kick the tires and drive away with business opportunities, traffic, and rankings.
|
440 |
+
|
441 |
+
You’ve worked hard to get the word out about your business. Now let Squirrly SEO do the heavy lifting and discover the most effective, the fastest path to success for your business online.
|
442 |
+
|
443 |
+
Robert Trif (SEO Specialist | Founder & CEO of BestSEO4u)
|
444 |
+
|
445 |
+
(testimonial source: AppSumo)
|
446 |
+
|
447 |
+
<h3>Innovative Features Powered by Proprietary Technology</h3>
|
448 |
+
|
449 |
+
★★★★★
|
450 |
+
Spending over 2 Million USD over the years allowed our engineers to build amazing proprietary technology for the Squirrly Company.
|
451 |
+
★★★★★
|
452 |
+
So, when you get Squirrly, you're getting access to a set of unique features that help you optimize and that ONLY WE OFFER.
|
453 |
+
- Keyword Research
|
454 |
+
- SERP Checker Tools
|
455 |
+
- Audit
|
456 |
+
- the A.I.
|
457 |
+
|
458 |
+
all of them are built and hosted by Squirrly Limited << it's our Intellectual Property.
|
459 |
+
|
460 |
+
<h3>SQUIRRLY SEO IS PERFECT FOR:</h3>
|
461 |
+
|
462 |
+
✔Small business owners
|
463 |
+
✔Bloggers
|
464 |
+
✔Agencies
|
465 |
+
✔Local businesses
|
466 |
+
✔Startups
|
467 |
+
✔Freelancers
|
468 |
+
✔Content creators
|
469 |
+
✔Marketing teams
|
470 |
+
✔anyone with a WordPress site
|
471 |
+
|
472 |
+
Right for all levels: both SEO experts and SEO beginners can successfully use Squirrly SEO to optimize for better Rankings.
|
473 |
+
|
474 |
+
Ability to configure Squirrly SEO for your level during onboarding;
|
475 |
+
|
476 |
+
Ability to switch between SEO beginner and Advanced Mode with a single click.
|
477 |
+
|
478 |
+
- Switch off Advanced SEO to have the simplified version of the settings, intended for Non-SEO Experts. By switching off, you'll let our AI select the best possible settings and to coordinate our 650 SEO features for your website.
|
479 |
+
|
480 |
+
- By activating Advanced SEO and Tweaking all Advanced SEO settings, you can start customizing the SEO experience for every single kind of Post_Type inside your WordPress site.
|
481 |
+
|
482 |
+
Switch from automatic to manual (fine-tune and see everything under the hood - change everything based on your needs and preferences).
|
483 |
+
|
484 |
+
<h3>WordPress SEO: All SEO Tools Included for Free</h3>
|
485 |
+
|
486 |
+
With a plethora of features to optimize and the option to test them out for free, giving Squirrly SEO a try is a risk-free option that will help you unlock SEO growth for your site.
|
487 |
+
|
488 |
+
The free SEO plugin is limited in terms of feature usage (volume-based usage), it doesn’t cut features.
|
489 |
+
|
490 |
+
- Some features might be found in the Lite version, instead of PRO, Web Dev Kit, or Business version, but they aren’t cut off.
|
491 |
+
|
492 |
+
The Free SEO Plugin can easily be used together with Rank Math SEO, Yoast, SEOPress, SEO Framework, All in One and more, in compatibility mode.
|
493 |
+
|
494 |
+
Or, as a user, you can decide to import all settings from the other SEO plugins, and use only Squirrly SEO moving forward. It’s your choice based on how you want to optimize and you can use them in any way you want.
|
495 |
+
|
496 |
+
★★★★★
|
497 |
+
|
498 |
+
> Leading Experts in Marketing and SEO Recommend the Squirrly SEO Plugin:
|
499 |
>
|
500 |
+
> * Neil Patel
|
501 |
+
> * Brian Dean
|
502 |
+
> * Ann Handley
|
503 |
+
> * Ibrahim Evsan
|
504 |
+
> * Search Engine Watch
|
505 |
+
> * Search Engine Journal
|
506 |
+
|
507 |
+
> SQUIRRLY SEO HAS BEEN FEATURED IN SOME OF THE WORLD'S MOST RENOWNED PUBLICATIONS:
|
508 |
+
>
|
509 |
+
> * Search Engine Watch
|
510 |
+
> * Search Engine Journal
|
511 |
+
> * QuickSprout
|
512 |
+
> * Backlinko
|
513 |
+
> * WP Engine
|
514 |
+
> * Business Insider
|
515 |
+
> * Kinsta
|
516 |
+
> * Elegant Themes
|
517 |
+
> * WP Mayor
|
518 |
+
> * Theme Expert
|
519 |
+
> * Tech Crunch
|
520 |
+
> * SEO Hacker
|
521 |
+
> * Forbes
|
522 |
+
> * Wall Street Journal
|
523 |
+
> * Clickz.com
|
524 |
+
> * Innovation Labs
|
525 |
+
> * Delivering Happiness
|
526 |
+
> * Boston.com
|
527 |
+
> * Manage WP
|
528 |
+
> * TechNation.io
|
529 |
+
> * TechHub.com
|
530 |
+
> * Spotify
|
531 |
+
> * Gartner
|
532 |
+
> * EDB-GOV-Singapore
|
533 |
+
|
534 |
+
= Branding Guideline =
|
535 |
+
|
536 |
+
SQUIRRLY® is a registered trademark of <a title="Squirrly Company" href="https://www.squirrly.co/more/">Squirrly Limited</a>. When writing about the WordPress SEO plugin by Squirrly, please use the following format.
|
537 |
+
|
538 |
+
* Squirrly SEO (correct)
|
539 |
+
* SEO by Squirrly (incorrect)
|
540 |
+
* SEO Squirrly (incorrect)
|
541 |
+
* Squirrel SEO (incorrect)
|
542 |
+
* Squirrely SEO (incorrect)
|
543 |
+
* Squirrelly SEO (incorrect)
|
544 |
+
* Squirly SEO (incorrect)
|
545 |
+
|
546 |
+
= What's Next =
|
547 |
+
|
548 |
+
If you like our WordPress SEO plugin, then consider checking out our other projects:
|
549 |
+
|
550 |
+
* <a title="Squirrly Social" href="https://www.squirrly.co/social-media/tools-for-digital-marketing/">Squirrly Social</a> - One Year of Social Media Posts in a Flash.
|
551 |
+
* <a title="Starbox PRO" href="https://starbox.squirrly.co/">Starbox PRO</a> - Your Authors Will Shine Like Stars.
|
552 |
+
* <a title="Squirrly SPY" href="https://www.squirrly.co/seo/spy/">Squirrly SPY</a> - Your Competitor’s SEO Growth. In Your Hands..
|
553 |
+
* <a title="Education Cloud PLUS" href="https://www.squirrly.co/learning/education-cloud/">Education Cloud PLUS</a> - It's like Netflix for Marketing Education.
|
554 |
+
* <a title="RankJumps" href="https://www.squirrly.co/rankjumps/">RankJumps</a> - Managed SEO. Done-for-you by Experts from Squirrly.
|
555 |
+
* <a title="Learning Solutions" href="https://www.squirrly.co/learning/solutions/">Learning Solutions by Squirrly</a> - Teach Online. Starting Tomorrow.
|
556 |
+
* <a title="Hide My WP Ghost" href="https://www.squirrly.co/wordpress/plugins/hide-my-wp/">Hide My WP Ghost</a> - WordPress Security Layer and Security Enhancements.
|
557 |
+
* <a title="For Developers who use this CMS" href="https://www.squirrly.co/wordpress/">WordPress Developers Page</a> - Innovations and Partnerships.
|
558 |
+
* <a title="Plugins for WordPress" href="https://www.squirrly.co/wordpress/plugins/">Plugins</a> - Other Plugins created by Squirrly.
|
559 |
+
|
560 |
+
|
561 |
+
<h3>Need Help Getting Started?</h3>
|
562 |
|
563 |
+
<a title="How to Install SEO Plugin by Squirrly?" href="https://howto.squirrly.co/kb/install-squirrly-seo-plugin/">How to Install Squirrly</a>
|
564 |
+
|
565 |
+
<a title="First Steps" href="https://howto.squirrly.co/wordpress-seo/first-steps-to-setup-squirrly-seo-plugin/">First steps to set up the Squirrly SEO plugin.</a>
|
566 |
+
|
567 |
+
How to Start Using the Non-Human SEO Consultant for Advanced WordPress SEO Marketing - <a title="Watch Video" href="https://www.youtube.com/watch?v=drRVRBFYUKA">play VIDEO</a>
|
568 |
+
|
569 |
+
<a title="How to Use Squirrly SEO" href="https://howto.squirrly.co/">Complete Knowledge Base</a> - A-Z tutorials on how to use every feature from the Squirrly SEO plugin.
|
570 |
+
|
571 |
+
<a title="More FAQ resources" href="https://howto.squirrly.co/faq/">Frequently Asked Questions</a> - Find answers to common questions about the Squirrly SEO plugin.
|
572 |
+
|
573 |
+
<a title="Facebook Group" href="https://www.facebook.com/groups/SquirrlySEOCustomerService">JourneyTeam</a> - A Facebook group where members of our community can ask questions, share knowledge, and learn from one another as they progress on their SEO Journey.
|
574 |
+
|
575 |
+
Excellent Customer Support - even on the free plan. Our dedicated support team is ready to help you with all your technical issues or questions regarding the Squirrly SEO plugin, and can be reached by live chat (Facebook Messenger), email, and support form.
|
576 |
+
|
577 |
+
<h3>MORE</h3>
|
578 |
+
|
579 |
+
<a title="WP SEO News" href="https://www.squirrly.co/digital-marketing/wordpress/">Squirrly Blog</a>. Get the latest news on Squirrly SEO.
|
580 |
+
|
581 |
+
<a title="Roadmap of WordPress SEO Plugin by Squirrly" href="https://squirrly.feedbear.com/roadmap">Official Roadmap</a>. See what we're working on and share feedback on how we can make Squirrly SEO even better for you.
|
582 |
+
|
583 |
+
<a title="Compare with Other Plugins: Yoast, AIOSEO, RankMath, SEOpress" href="https://plugin.squirrly.co/compare/">Compare</a>. See how the Squirrly SEO stacks up against its competitors, other WordPress SEO plugins: including Rank Math, Yoast SEO, SEOPress, and All in One SEO.
|
584 |
+
|
585 |
+
<a title="Full List of Features" href="https://www.squirrly.co/wordpress/plugins/seo/">Full List of Features.</a> Complete feature list. Learn more about all SEO Tools within Squirrly SEO - the complete SEO plugin for WordPress.
|
586 |
+
|
587 |
+
★★★★★
|
588 |
We've truly made SEO Uncomplicated.
|
589 |
|
590 |
|
654 |
9. Squirrly SEO - Progress & Achievements
|
655 |
|
656 |
== Changelog ==
|
657 |
+
= 11.1.07- 08/05/2021 =
|
658 |
+
Update - Added compatibility with UiPress plugin
|
659 |
+
Update - Add Google Analytics property option select in Squirrly SEO plugin
|
660 |
+
Update - Added the mark for frontend Elementor editor
|
661 |
+
Update - Compatibility with WP 5.8
|
662 |
+
Fix - Author URL warning in the profile page
|
663 |
+
Fix - Remove Noindex and Nofollow for empty terms as it doesn't work on all situations. Will be added as a plugin option on the new UX.
|
664 |
+
|
665 |
= 11.1.06- 07/13/2021 =
|
666 |
Update - Compatibility with Divi and Fusion plugins
|
667 |
Update - Update Readme file and plugin description
|
1060 |
|
1061 |
== Frequently Asked Questions ==
|
1062 |
|
1063 |
+
= Can I use Squirrly together with Rank Math? Could I replace Rank Math altogether with Squirrly? =
|
1064 |
+
Yes, you can use Squirrly SEO alongside Rank Math if you want to, as Squirrly enables you to deactivate certain settings or modules so that Squirrly SEO and Rank Math can work in compatibility mode.
|
1065 |
+
|
1066 |
+
If Squirrly stops handling source code changes, then it works with Rank Math, SEOpress, All In One SEO SEO, Yoast, and others. Regarding whether you could replace Rank Math altogether with Squirrly SEO, this graphic linked below shows you a side-by-side comparison of Squirrly SEO vs. Rank Math.
|
1067 |
+
|
1068 |
+
There are around 650 features in Squirrly SEO, most of which can’t be found in Rank Math, given that Rank Math does not offer a duality between plugin and cloud services.
|
1069 |
+
|
1070 |
+
https://howto.squirrly.co/wordpress-seo/use-squirrly-in-compatibility-mode-with-other-seo-plugins/
|
1071 |
+
|
1072 |
+
https://plugin.squirrly.co/compare/#vsrankmath
|
1073 |
+
|
1074 |
+
= Can we import data from Rank Math into Squirrly SEO? =
|
1075 |
+
Yes, you can easily import all settings and all page optimizations made with Rank Math, using our import features. This provides step-by-step documentation on how to migrate your data from Rank Math so that you don’t lose your previous SEO optimization.
|
1076 |
+
|
1077 |
+
https://howto.squirrly.co/wordpress-seo/how-to-switch-from-rank-math-to-squirrly-seo/
|
1078 |
+
|
1079 |
+
= Are Focus Pages similar to Pillar Content in Rank Math? =
|
1080 |
+
You can search for “focus pages” on this page:
|
1081 |
+
|
1082 |
+
https://www.squirrly.co/wordpress/plugins/second-seo-features-page/
|
1083 |
+
|
1084 |
+
You will see there all that it offers. It is incredibly valuable for SEO and does everything required for SEO, unlike the pillar feature in Rank Math. It offers more than even Moz or Ahrefs does in terms of content analysis.
|
1085 |
+
|
1086 |
+
Side by side comparison: Squirrly SEO versus Rank Math
|
1087 |
+
|
1088 |
+
https://plugin.squirrly.co/compare/#vsrankmath
|
1089 |
+
|
1090 |
+
Powered by advanced cloud servers owned by the Squirrly Company, the MarketIntelligence big data analysis we do, and data sources like: Moz, Majestic, Alexa, Semrush, Google Analytics, ContentLook, crawlers owned by Squirrly: we are in a unique position that allows us to do in-depth content analysis and see each page the same way that Google’s algorithms see it.
|
1091 |
+
|
1092 |
+
= How does Squirrly, marketing and marketshare wise, compete with SEOPress, Rank Math, All in One SEO? =
|
1093 |
+
We have been around since 2012 and we’ve validated over 17 products already with money paid by customers. There are few startups that could show the same results.
|
1094 |
+
|
1095 |
+
Get a more detailed response here.
|
1096 |
+
|
1097 |
+
https://howto.squirrly.co/faq/how-does-squirrly-marketing-and-marketshare-wise-compete/
|
1098 |
+
|
1099 |
+
= Can the Squirrly SEO plugin be used together with Yoast, SEOPress, Rank Math, Premium SEO Pack, All in One SEO, SEO Framework? =
|
1100 |
+
Yes, you can use Squirrly SEO alongside other SEO plugins like Yoast, Rank Math, SEO Press, Premium SEO Pack, All in One SEO, or SEO Framework in compatibility mode.
|
1101 |
+
|
1102 |
+
You can learn more about how to use Squirrly SEO in compatibility mode here.
|
1103 |
+
|
1104 |
+
https://howto.squirrly.co/wordpress-seo/use-squirrly-in-compatibility-mode-with-other-seo-plugins/
|
1105 |
+
|
1106 |
+
If Squirrly stops handling source code changes, then it works with Rank Math, SEOpress, SEO Pressor, All in One SEO, Yoast, SEO Framework, and others.
|
1107 |
+
|
1108 |
+
Basically, you can use Squirrly SEO to power up WP on top of everything that is already handled by the other WordPress SEO plugin you’re using. Of course, you can also decide to switch to Squirrly, as it offers the complete SEO funnel.
|
1109 |
+
|
1110 |
+
Check out these graphics
|
1111 |
+
|
1112 |
+
https://plugin.squirrly.co/compare/
|
1113 |
+
|
1114 |
+
to see how Squirrly compares to other SEO plugins such as Yoast, Rank Math, SEOPress, SEO Framework, and All in One SEO.
|
1115 |
+
|
1116 |
+
= How does Squirrly compare with plugins like SEO Framework, SEO Press, Rank Math, All in one SEO, or Yoast in terms of site speed and pagespeed? =
|
1117 |
+
Most of the processing, data storage, and other things that only Squirrly SEO can do, are actually things that happen on our Cloud Servers. The duality between plugin and Cloud Services (APIs, crawlers, big data, A.I., MarketIntelligence services) allows us to load the plugin’s code very fast.
|
1118 |
+
|
1119 |
+
The duality between SEO plugin and Cloud Services gives us an advantage over other WordPress SEO plugins like SEO Framework, SEO Press, Rank Math, All in One SEO, Rank Math, and Yoast.
|
1120 |
+
|
1121 |
+
More about this here.
|
1122 |
+
|
1123 |
+
https://howto.squirrly.co/faq/how-does-squirrly-compare-site-speed/
|
1124 |
+
|
1125 |
+
= Does Squirrly SEO Have a Redirection feature? =
|
1126 |
+
Yes, Squirrly does provide redirection functionality. Squirrly SEO has a 301 Redirect option. The 301 Redirection Option can now be found in All Snippets in the Visibility section of Squirrly SEO.
|
1127 |
+
|
1128 |
+
Snippets in All Snippet – Bulk SEO
|
1129 |
+
Snippet when Editing Page
|
1130 |
+
Snippet on the Front-End
|
1131 |
+
|
1132 |
+
It’s a new way of doing re-directs and complements our automatic redirection feature.
|
1133 |
+
|
1134 |
+
https://howto.squirrly.co/kb/seo-links/
|
1135 |
+
|
1136 |
+
= Is there a Way to Remove the no-index Pages from the XML Sitemap? =
|
1137 |
+
Yes, you can use Squirrly SEO to remove the no-index pages from the XML sitemap.
|
1138 |
+
|
1139 |
+
You can do this by post type using the SEO Settings > Automation functionality. Simply select the post type and switch off: “Include In XML Sitemap”.
|
1140 |
+
|
1141 |
+
More details about how to remove no-index pages from the XML sitemap can be seen here.
|
1142 |
+
|
1143 |
+
https://howto.squirrly.co/kb/seo-automation/#send_to_sitemap
|
1144 |
+
|
1145 |
+
Or you can remove the no-index pages from the xml sitemap at an URL level by editing the SEO Snippet and then selecting “Visibility”.
|
1146 |
+
|
1147 |
+
More details about this xml sitemap option can be seen here.
|
1148 |
+
|
1149 |
+
https://howto.squirrly.co/kb/bulk-seo/#bulk_seo_visibility
|
1150 |
+
|
1151 |
+
= Does WordPress SEO Plugin by Squirrly Have an Option for submitting new URLs to Google Search Console to be Indexed? =
|
1152 |
+
Yes, Squirrly has an option that helps with submitting new URLs to Google Search Console, namely the: Ping New Posts to Search Engine option.
|
1153 |
+
|
1154 |
+
More details about this here.
|
1155 |
+
|
1156 |
+
https://howto.squirrly.co/kb/sitemap-xml-settings/
|
1157 |
+
|
1158 |
+
= What Special Features Does SEO Plugin by Squirrly Offer for Local SEO? =
|
1159 |
+
Squirrly provides Schema for Local Business. Coordinates, hours, menus, etc. are available. You can learn more about this here.
|
1160 |
+
|
1161 |
+
https://howto.squirrly.co/kb/json-ld-structured-data/
|
1162 |
+
|
1163 |
+
Meta Data for GEO and Location – Especially helpful for Local SEO and Knowledge Graph
|
1164 |
+
|
1165 |
+
Add Coordinates for Local SEO and add the address of your main location.
|
1166 |
+
This will be used for your Organization and for Publisher details within your WordPress site.
|
1167 |
+
|
1168 |
+
Schema for Local SEO can now be built directly from WordPress – Squirrly – SEO Settings – JSON-LD.
|
1169 |
+
|
1170 |
+
For multiple locations, you can build the Schema using the Editor we give access to and the Custom Code option for Schema.
|
1171 |
+
|
1172 |
+
We’ve even added KML files recently so you can easily add your local business to Google Earth and our integration actually works.
|
1173 |
+
|
1174 |
+
= What Dedicated Features Does Squirrly Offer for News Websites? =
|
1175 |
+
- Build XML Sitemap for Google News (you can learn more about this here)
|
1176 |
+
- XML Sitemap Settings: Blogging Frequency. You have the option to select Every Day as your blogging frequency or even Every Hour.
|
1177 |
+
- Ping New Posts to Search Engines. Pinging is a process by which Squirrly SEO can notify search engines that your xml sitemap has been updated.
|
1178 |
+
- Open Graph Type for Google News – NewsArticle
|
1179 |
+
- Schema for Google News
|
1180 |
+
|
1181 |
+
https://howto.squirrly.co/kb/sitemap-xml-settings/#news_sitemap
|
1182 |
+
|
1183 |
+
= With Squirrly, can specific pictures for social media shares of pages and posts be used? =
|
1184 |
+
Yes, you can customize the Open Graph and Twitter Card image for every page and post using Bulk SEO or the Squirrly SEO Snippet.
|
1185 |
+
|
1186 |
+
You can learn more about these features here.
|
1187 |
+
|
1188 |
+
https://howto.squirrly.co/kb/bulk-seo/
|
1189 |
+
|
1190 |
+
= How is Squirrly Addressing the Core Web Vitals SEO Scoring Method? =
|
1191 |
+
Squirrly is addressing them with Focus Pages.
|
1192 |
+
|
1193 |
+
Page experience has been one of the main reasons we’ve created Focus Pages and it goes a little beyond just pagespeed and coding propriety.
|
1194 |
+
|
1195 |
+
Time on page, bounce rates, number of pages visited are also very important and we’re getting clear signals that their importance is shifting.
|
1196 |
+
|
1197 |
+
We already address pagespeed and https and give resources to our users, so they are prepared for the update.
|
1198 |
+
|
1199 |
+
https://howto.squirrly.co/kb/focus-pages-page-audits/
|
1200 |
+
|
1201 |
+
= What is the advantage of using Squirrly’s keyword research tool instead of using an external tool for this? =
|
1202 |
+
Squirrly’s built-in keyword research tool allows you to perform keyword research without leaving WordPress.
|
1203 |
+
|
1204 |
+
Furthermore, Squirrly also provides access to features like Briefcase, which means you can not only find keywords but also organize them into tighter groups for a better strategy. Furthermore, our keyword research data is fresh, since we don’t use caching (cached databases).
|
1205 |
+
|
1206 |
+
Maximum caching time is about 48 hours, not a whole year or two years like you find in other tools.
|
1207 |
+
|
1208 |
+
As we use Google API for search volume, Social Media for discussions, the data should be fresh every time and this is why it is different from others – and also why the data we show is different from what you may find in other keyword research tools who use caching for their data. (caching time can be extremely high for some of those tools).
|
1209 |
+
|
1210 |
+
https://howto.squirrly.co/kb/keyword-research-and-seo-strategy/
|
1211 |
+
|
1212 |
+
= Can you guarantee SEO results? =
|
1213 |
+
If you follow what we outline here, then yes. We will guarantee (please read the following resource):
|
1214 |
+
|
1215 |
+
https://plugin.squirrly.co/squirrly-seo-pro-results-guarantee/
|
1216 |
|
1217 |
= Why is Squirrly Keyword Research better than Google Keyword Planner for SEO strategies? =
|
1218 |
|
squirrly.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
|
9 |
* Author: Squirrly SEO
|
10 |
* Author URI: https://plugin.squirrly.co
|
11 |
-
* Version: 11.1.
|
12 |
* License: GPLv2 or later
|
13 |
* License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
14 |
* Text Domain: squirrly-seo
|
@@ -17,9 +17,9 @@
|
|
17 |
|
18 |
if (!defined('SQ_VERSION')) {
|
19 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
20 |
-
define('SQ_VERSION', '11.1.
|
21 |
//The last stable version
|
22 |
-
define('SQ_STABLE_VERSION', '11.1.
|
23 |
// Call config files
|
24 |
try {
|
25 |
require_once(dirname(__FILE__) . '/config/config.php');
|
8 |
* Description: A.I.-based Private SEO Consultant. In a Plugin. Powered by Machine Learning and Cloud Services. Over 300 functionalities for SEO available when you need them.
|
9 |
* Author: Squirrly SEO
|
10 |
* Author URI: https://plugin.squirrly.co
|
11 |
+
* Version: 11.1.07
|
12 |
* License: GPLv2 or later
|
13 |
* License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
14 |
* Text Domain: squirrly-seo
|
17 |
|
18 |
if (!defined('SQ_VERSION')) {
|
19 |
/* SET THE CURRENT VERSION ABOVE AND BELOW */
|
20 |
+
define('SQ_VERSION', '11.1.07');
|
21 |
//The last stable version
|
22 |
+
define('SQ_STABLE_VERSION', '11.1.06');
|
23 |
// Call config files
|
24 |
try {
|
25 |
require_once(dirname(__FILE__) . '/config/config.php');
|
view/Blocks/Account.php
CHANGED
@@ -1,19 +1,7 @@
|
|
1 |
<?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
|
2 |
<?php
|
3 |
$whole = $decimal = 0;
|
4 |
-
|
5 |
-
?>
|
6 |
-
<div class="card-text col-12 p-0 m-0 border-0">
|
7 |
-
<div class="author">
|
8 |
-
<i class="avatar sq_icons sq_icon_package"></i>
|
9 |
-
</div>
|
10 |
-
<div class="title mt-4 mb-0 text-center">
|
11 |
-
<h6><?php echo esc_html__("Account Info Unavailable", _SQ_PLUGIN_NAME_) ?></h6>
|
12 |
-
</div>
|
13 |
-
</div>
|
14 |
-
<?php
|
15 |
-
return;
|
16 |
-
}
|
17 |
if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
|
18 |
list($whole, $decimal) = explode('.', number_format($view->checkin->product_price, 2, '.', ','));
|
19 |
}
|
1 |
<?php defined('ABSPATH') || die('Cheatin\' uh?'); ?>
|
2 |
<?php
|
3 |
$whole = $decimal = 0;
|
4 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
if (isset($view->checkin->product_price) && (int)$view->checkin->product_price > 0) {
|
6 |
list($whole, $decimal) = explode('.', number_format($view->checkin->product_price, 2, '.', ','));
|
7 |
}
|
view/Connect/GoogleAnalytics.php
CHANGED
@@ -36,7 +36,7 @@ $connect = json_decode(wp_json_encode(SQ_Classes_Helpers_Tools::getOption('conne
|
|
36 |
<input type="hidden" name="action" value="sq_seosettings_ga_save"/>
|
37 |
<select name="property_id" class="d-inline-block m-0 p-1" onchange="if(confirm('Do you select this property?')){jQuery('form#sq_ga_property_form').submit();}">
|
38 |
<?php foreach ($properties as $property) { ?>
|
39 |
-
<option <?php echo(($property->property_id == $property_id) ? 'selected="selected"' : '') ?> value="<?php echo $property->property_id ?>"><?php echo $property->website_url;
|
40 |
<?php } ?>
|
41 |
</select>
|
42 |
</form>
|
36 |
<input type="hidden" name="action" value="sq_seosettings_ga_save"/>
|
37 |
<select name="property_id" class="d-inline-block m-0 p-1" onchange="if(confirm('Do you select this property?')){jQuery('form#sq_ga_property_form').submit();}">
|
38 |
<?php foreach ($properties as $property) { ?>
|
39 |
+
<option <?php echo(($property->property_id == $property_id) ? 'selected="selected"' : '') ?> value="<?php echo $property->property_id ?>"><?php echo $property->website_url; ?> (<?php echo $property->ga_id ?>)</option>
|
40 |
<?php } ?>
|
41 |
</select>
|
42 |
</form>
|