wpseo-non-ajax-functions.php
18 KB
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
<?php
/**
* @package WPSEO\Internals
*/
if ( ! defined( 'WPSEO_VERSION' ) ) {
header( 'Status: 403 Forbidden' );
header( 'HTTP/1.1 403 Forbidden' );
exit();
}
/**
* Adds an SEO admin bar menu with several options. If the current user is an admin he can also go straight to several settings menu's from here.
*/
function wpseo_admin_bar_menu() {
// If the current user can't write posts, this is all of no use, so let's not output an admin menu.
if ( ! current_user_can( 'edit_posts' ) ) {
return;
}
$options = WPSEO_Options::get_options( array( 'wpseo', 'wpseo_ms' ) );
if ( $options['enable_admin_bar_menu'] !== true ) {
return;
}
global $wp_admin_bar, $post;
// Determine is user is admin or network admin.
$user_is_admin_or_networkadmin = current_user_can( 'manage_options' );
if ( ! $user_is_admin_or_networkadmin && is_multisite() ) {
$user_is_admin_or_networkadmin = ( $options['access'] === 'superadmin' && is_super_admin() );
}
$focuskw = '';
$score = '';
// By default, the top level menu item has no link.
$seo_url = '';
// By default, make the no-link top level menu item focusable.
$top_level_link_tabindex = '0';
$analysis_seo = new WPSEO_Metabox_Analysis_SEO();
$analysis_readability = new WPSEO_Metabox_Analysis_Readability();
if ( ( is_singular() || ( is_admin() && WPSEO_Metabox::is_post_edit( $GLOBALS['pagenow'] ) ) ) && isset( $post ) && is_object( $post ) && apply_filters( 'wpseo_use_page_analysis', true ) === true
) {
$focuskw = WPSEO_Meta::get_value( 'focuskw', $post->ID );
if ( $analysis_seo->is_enabled() ) {
$score = wpseo_adminbar_seo_score();
}
elseif ( $analysis_readability->is_enabled() ) {
$score = wpseo_adminbar_content_score();
}
}
if ( is_category() || is_tag() || (WPSEO_Taxonomy::is_term_edit( $GLOBALS['pagenow'] ) && ! WPSEO_Taxonomy::is_term_overview( $GLOBALS['pagenow'] ) ) || is_tax() ) {
if ( $analysis_seo->is_enabled() ) {
$score = wpseo_tax_adminbar_seo_score();
}
elseif ( $analysis_readability->is_enabled() ) {
$score = wpseo_tax_adminbar_content_score();
}
}
// Never display notifications for network admin.
$counter = '';
// Set the top level menu item content for admins and network admins.
if ( $user_is_admin_or_networkadmin ) {
// Link the top level menu item to the Yoast Dashboard page.
$seo_url = get_admin_url( null, 'admin.php?page=' . WPSEO_Admin::PAGE_IDENTIFIER );
// Since admins will get a real link, there's no need for a tabindex attribute.
$top_level_link_tabindex = false;
if ( '' === $score ) {
// Notification information.
$notification_center = Yoast_Notification_Center::get();
$notification_count = $notification_center->get_notification_count();
$new_notifications = $notification_center->get_new_notifications();
$new_notifications_count = count( $new_notifications );
if ( $notification_count > 0 ) {
// Always show Alerts page when clicking on the main link.
/* translators: %s: number of notifications */
$counter_screen_reader_text = sprintf( _n( '%s notification', '%s notifications', $notification_count, 'wordpress-seo' ), number_format_i18n( $notification_count ) );
$counter = sprintf( ' <div class="wp-core-ui wp-ui-notification yoast-issue-counter"><span aria-hidden="true">%d</span><span class="screen-reader-text">%s</span></div>', $notification_count, $counter_screen_reader_text );
}
if ( $new_notifications_count ) {
$notification = sprintf(
/* translators: %d resolves to the number of alerts being added. */
_n( 'You have a new issue concerning your SEO!', 'You have %d new issues concerning your SEO!', $new_notifications_count, 'wordpress-seo' ),
$new_notifications_count
);
$counter .= '<div class="yoast-issue-added">' . $notification . '</div>';
}
}
}
$title = '<div id="yoast-ab-icon" class="ab-item yoast-logo svg"><span class="screen-reader-text">' . __( 'SEO', 'wordpress-seo' ) . '</span></div>';
$wp_admin_bar->add_menu( array(
'id' => 'wpseo-menu',
'title' => $title . $score . $counter,
'href' => $seo_url,
'meta' => array( 'tabindex' => $top_level_link_tabindex ),
) );
if ( ! empty( $notification_count ) ) {
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-menu',
'id' => 'wpseo-notifications',
'title' => __( 'Notifications', 'wordpress-seo' ) . $counter,
'href' => $seo_url,
'meta' => array( 'tabindex' => $top_level_link_tabindex ),
) );
}
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-menu',
'id' => 'wpseo-kwresearch',
'title' => __( 'Keyword Research', 'wordpress-seo' ),
'meta' => array( 'tabindex' => '0' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-kwresearch',
'id' => 'wpseo-adwordsexternal',
'title' => __( 'AdWords External', 'wordpress-seo' ),
'href' => 'http://adwords.google.com/keywordplanner',
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-kwresearch',
'id' => 'wpseo-googleinsights',
'title' => __( 'Google Trends', 'wordpress-seo' ),
'href' => 'https://www.google.com/trends/explore#q=' . urlencode( $focuskw ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-kwresearch',
'id' => 'wpseo-wordtracker',
'title' => __( 'SEO Book', 'wordpress-seo' ),
'href' => 'http://tools.seobook.com/keyword-tools/seobook/?keyword=' . urlencode( $focuskw ),
'meta' => array( 'target' => '_blank' ),
) );
if ( ! is_admin() ) {
$url = WPSEO_Frontend::get_instance()->canonical( false );
if ( is_string( $url ) ) {
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-menu',
'id' => 'wpseo-analysis',
'title' => __( 'Analyze this page', 'wordpress-seo' ),
'meta' => array( 'tabindex' => '0' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-inlinks-ose',
'title' => __( 'Check Inlinks (OSE)', 'wordpress-seo' ),
'href' => '//moz.com/researchtools/ose/links?site=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-kwdensity',
'title' => __( 'Check Keyword Density', 'wordpress-seo' ),
// HTTPS not available.
'href' => 'http://www.zippy.co.uk/keyworddensity/index.php?url=' . urlencode( $url ) . '&keyword=' . urlencode( $focuskw ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-cache',
'title' => __( 'Check Google Cache', 'wordpress-seo' ),
'href' => '//webcache.googleusercontent.com/search?strip=1&q=cache:' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-header',
'title' => __( 'Check Headers', 'wordpress-seo' ),
'href' => '//quixapp.com/headers/?r=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-structureddata',
'title' => __( 'Google Structured Data Test', 'wordpress-seo' ),
'href' => 'https://search.google.com/structured-data/testing-tool#url=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-facebookdebug',
'title' => __( 'Facebook Debugger', 'wordpress-seo' ),
'href' => '//developers.facebook.com/tools/debug/og/object?q=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-pinterestvalidator',
'title' => __( 'Pinterest Rich Pins Validator', 'wordpress-seo' ),
'href' => 'https://developers.pinterest.com/tools/url-debugger/?link=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-htmlvalidation',
'title' => __( 'HTML Validator', 'wordpress-seo' ),
'href' => '//validator.w3.org/check?uri=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-cssvalidation',
'title' => __( 'CSS Validator', 'wordpress-seo' ),
'href' => '//jigsaw.w3.org/css-validator/validator?uri=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-pagespeed',
'title' => __( 'Google Page Speed Test', 'wordpress-seo' ),
'href' => '//developers.google.com/speed/pagespeed/insights/?url=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-microsoftedge',
'title' => __( 'Microsoft Edge Site Scan', 'wordpress-seo' ),
'href' => 'https://developer.microsoft.com/en-us/microsoft-edge/tools/staticscan/?url=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-analysis',
'id' => 'wpseo-google-mobile-friendly',
'title' => __( 'Mobile-Friendly Test', 'wordpress-seo' ),
'href' => 'https://www.google.com/webmasters/tools/mobile-friendly/?url=' . urlencode( $url ),
'meta' => array( 'target' => '_blank' ),
) );
}
}
// @todo: add links to bulk title and bulk description edit pages.
if ( $user_is_admin_or_networkadmin ) {
$advanced_settings = wpseo_advanced_settings_enabled( $options );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-menu',
'id' => 'wpseo-settings',
'title' => __( 'SEO Settings', 'wordpress-seo' ),
'meta' => array( 'tabindex' => '0' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-general',
'title' => __( 'Dashboard', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_dashboard' ),
) );
if ( $advanced_settings ) {
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-titles',
'title' => __( 'Titles & Metas', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_titles' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-social',
'title' => __( 'Social', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_social' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-xml',
'title' => __( 'XML Sitemaps', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_xml' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-wpseo-advanced',
'title' => __( 'Advanced', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_advanced' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-tools',
'title' => __( 'Tools', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_tools' ),
) );
}
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-search-console',
'title' => __( 'Search Console', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_search_console' ),
) );
$wp_admin_bar->add_menu( array(
'parent' => 'wpseo-settings',
'id' => 'wpseo-licenses',
'title' => __( 'Go Premium', 'wordpress-seo' ),
'href' => admin_url( 'admin.php?page=wpseo_licenses' ),
) );
}
}
/**
* Returns the SEO score element for the admin bar.
*
* @return string
*/
function wpseo_adminbar_seo_score() {
$rating = WPSEO_Meta::get_value( 'linkdex', get_the_ID() );
return wpseo_adminbar_score( $rating );
}
/**
* Returns the content score element for the adminbar.
*
* @return string
*/
function wpseo_adminbar_content_score() {
$rating = WPSEO_Meta::get_value( 'content_score', get_the_ID() );
return wpseo_adminbar_score( $rating );
}
/**
* Returns the SEO score element for the adminbar.
*
* @return string
*/
function wpseo_tax_adminbar_seo_score() {
$rating = 0;
if ( is_tax() || is_category() || is_tag() ) {
$rating = WPSEO_Taxonomy_Meta::get_meta_without_term( 'linkdex' );
}
return wpseo_adminbar_score( $rating );
}
/**
* Returns the Content score element for the adminbar.
*
* @return string
*/
function wpseo_tax_adminbar_content_score() {
$rating = 0;
if ( is_tax() || is_category() || is_tag() ) {
$rating = WPSEO_Taxonomy_Meta::get_meta_without_term( 'content_score' );
}
return wpseo_adminbar_score( $rating );
}
/**
* Takes The SEO score and makes the score icon for the adminbar with it.
*
* @param int $score The 0-100 rating of the score. Can be either SEO score or content score.
*
* @return string $score_adminbar_element
*/
function wpseo_adminbar_score( $score ) {
$score = WPSEO_Utils::translate_score( $score );
$score_adminbar_element = '<div class="wpseo-score-icon adminbar-seo-score '. $score .'"><span class="adminbar-seo-score-text screen-reader-text"></span></div>';
return $score_adminbar_element;
}
add_action( 'admin_bar_menu', 'wpseo_admin_bar_menu', 95 );
/**
* Enqueue CSS to format the Yoast SEO adminbar item.
*/
function wpseo_admin_bar_style() {
if ( ! is_admin_bar_showing() ) {
return;
}
$asset_manager = new WPSEO_Admin_Asset_Manager();
$asset_manager->register_assets();
$asset_manager->enqueue_style( 'adminbar' );
}
add_action( 'wp_enqueue_scripts', 'wpseo_admin_bar_style' );
add_action( 'admin_enqueue_scripts', 'wpseo_admin_bar_style' );
/**
* Allows editing of the meta fields through weblog editors like Marsedit.
*
* @param array $allcaps Capabilities that must all be true to allow action.
* @param array $cap Array of capabilities to be checked, unused here.
* @param array $args List of arguments for the specific cap to be checked.
*
* @return array $allcaps
*/
function allow_custom_field_edits( $allcaps, $cap, $args ) {
// $args[0] holds the capability.
// $args[2] holds the post ID.
// $args[3] holds the custom field.
// Make sure the request is to edit or add a post meta (this is usually also the second value in $cap,
// but this is safer to check).
if ( in_array( $args[0], array( 'edit_post_meta', 'add_post_meta' ) ) ) {
// Only allow editing rights for users who have the rights to edit this post and make sure
// the meta value starts with _yoast_wpseo (WPSEO_Meta::$meta_prefix).
if ( ( isset( $args[2] ) && current_user_can( 'edit_post', $args[2] ) ) && ( ( isset( $args[3] ) && $args[3] !== '' ) && strpos( $args[3], WPSEO_Meta::$meta_prefix ) === 0 ) ) {
$allcaps[ $args[0] ] = true;
}
}
return $allcaps;
}
add_filter( 'user_has_cap', 'allow_custom_field_edits', 0, 3 );
/**
* Detects if the advanced settings are enabled.
*
* @param array $wpseo_options The wpseo settings.
*
* @returns boolean True if the advanced settings are enabled, false if not.
*/
function wpseo_advanced_settings_enabled( $wpseo_options ) {
return ( $wpseo_options['enable_setting_pages'] === true );
}
/********************** DEPRECATED FUNCTIONS **********************/
/**
* Set the default settings.
*
* @deprecated 1.5.0
* @deprecated use WPSEO_Options::initialize()
* @see WPSEO_Options::initialize()
*/
function wpseo_defaults() {
_deprecated_function( __FUNCTION__, 'WPSEO 1.5.0', 'WPSEO_Options::initialize()' );
WPSEO_Options::initialize();
}
/**
* Translates a decimal analysis score into a textual one.
*
* @deprecated 1.5.6.1
* @deprecated use WPSEO_Utils::translate_score()
* @see WPSEO_Utils::translate_score()
*
* @param int $val The decimal score to translate.
* @param bool $css_value Whether to return the i18n translated score or the CSS class value.
*
* @return string
*/
function wpseo_translate_score( $val, $css_value = true ) {
_deprecated_function( __FUNCTION__, 'WPSEO 1.5.6.1', 'WPSEO_Utils::translate_score()' );
return WPSEO_Utils::translate_score();
}
/**
* Check whether file editing is allowed for the .htaccess and robots.txt files
*
* @deprecated 1.5.6.1
* @deprecated use WPSEO_Utils::allow_system_file_edit()
* @see WPSEO_Utils::allow_system_file_edit()
*
* @internal current_user_can() checks internally whether a user is on wp-ms and adjusts accordingly.
*
* @return bool
*/
function wpseo_allow_system_file_edit() {
_deprecated_function( __FUNCTION__, 'WPSEO 1.5.6.1', 'WPSEO_Utils::allow_system_file_edit()' );
return WPSEO_Utils::allow_system_file_edit();
}
/**
* Test whether force rewrite should be enabled or not.
*
* @deprecated 3.3
*
* @return void
*/
function wpseo_title_test() {
_deprecated_function( __FUNCTION__, 'WPSEO 3.3.0' );
}
/**
* Test whether the active theme contains a <meta> description tag.
*
* @since 1.4.14 Moved from dashboard.php and adjusted - see changelog
*
* @deprecated 3.3
*
* @return void
*/
function wpseo_description_test() {
_deprecated_function( __FUNCTION__, 'WPSEO 3.3.0' );
}
/**
* Check if the current theme was updated and if so, test the updated theme
* for the title and meta description tag
*
* @since 1.4.14
*
* @deprecated 3.3
*
* @param WP_Upgrader $upgrader_object Upgrader object instance.
* @param array $context_array Context data array.
* @param mixed $themes Optional themes set.
*
* @return void
*/
function wpseo_upgrader_process_complete( $upgrader_object, $context_array, $themes = null ) {
_deprecated_function( __FUNCTION__, 'WPSEO 3.3.0' );
}
/**
* Abuse a filter to check if the current theme was updated and if so, test the updated theme
* for the title and meta description tag
*
* @since 1.4.14
* @deprecated 3.3
*
* @param array $update_actions Updated actions set.
* @param WP_Theme|string $updated_theme Theme object instance or stylesheet name.
*/
function wpseo_update_theme_complete_actions( $update_actions, $updated_theme ) {
_deprecated_function( __FUNCTION__, 'WPSEO 3.3.0' );
}