wpseo-functions.php
23.9 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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
<?php
/**
* @package Internals
*/
if ( !defined( 'WPSEO_VERSION' ) ) {
header( 'HTTP/1.0 403 Forbidden' );
die;
}
/**
* Get the value from the post custom values
*
* @param string $val name of the value to get
* @param int $postid post ID of the post to get the value for
* @return bool|mixed
*/
function wpseo_get_value( $val, $postid = 0 ) {
$postid = absint( $postid );
if ( $postid === 0 ) {
global $post;
if ( isset( $post ) && isset( $post->post_status ) && $post->post_status != 'auto-draft')
$postid = $post->ID;
else
return false;
}
$custom = get_post_custom( $postid );
if ( !empty( $custom['_yoast_wpseo_' . $val][0] ) )
return maybe_unserialize( $custom['_yoast_wpseo_' . $val][0] );
else
return false;
}
/**
* @param string $meta the meta to change
* @param mixed $val the value to set the meta to
* @param int $postid the ID of the post to change the meta for.
*/
function wpseo_set_value( $meta, $val, $postid ) {
update_post_meta( $postid, '_yoast_wpseo_' . $meta, $val );
}
/**
* Retrieve an array of all the options the plugin uses. It can't use only one due to limitations of the options API.
*
* @return array of options.
*/
function get_wpseo_options_arr() {
$optarr = array( 'wpseo', 'wpseo_permalinks', 'wpseo_titles', 'wpseo_rss', 'wpseo_internallinks', 'wpseo_xml', 'wpseo_social' );
return apply_filters( 'wpseo_options', $optarr );
}
/**
* Retrieve all the options for the SEO plugin in one go.
*
* @return array of options
*/
function get_wpseo_options() {
static $options;
if ( !isset( $options ) ) {
$options = array();
foreach ( get_wpseo_options_arr() as $opt ) {
$options = array_merge( $options, (array) get_option( $opt ) );
}
}
return $options;
}
/**
* @param string $string the string to replace the variables in.
* @param array $args the object some of the replacement values might come from, could be a post, taxonomy or term.
* @param array $omit variables that should not be replaced by this function.
* @return string
*/
function wpseo_replace_vars( $string, $args, $omit = array() ) {
$args = (array) $args;
$string = strip_tags( $string );
// Let's see if we can bail super early.
if ( strpos( $string, '%%' ) === false )
return trim( preg_replace( '`\s+`u', ' ', $string ) );
global $sep;
if ( !isset( $sep ) || empty( $sep ) )
$sep = '-';
$simple_replacements = array(
'%%sep%%' => $sep,
'%%sitename%%' => get_bloginfo( 'name' ),
'%%sitedesc%%' => get_bloginfo( 'description' ),
'%%currenttime%%' => date( get_option( 'time_format' ) ),
'%%currentdate%%' => date( get_option( 'date_format' ) ),
'%%currentday%%' => date( 'j' ),
'%%currentmonth%%' => date( 'F' ),
'%%currentyear%%' => date( 'Y' ),
);
foreach ( $simple_replacements as $var => $repl ) {
$string = str_replace( $var, $repl, $string );
}
// Let's see if we can bail early.
if ( strpos( $string, '%%' ) === false )
return trim( preg_replace( '`\s+`u', ' ', $string ) );
global $wp_query;
$defaults = array(
'ID' => '',
'name' => '',
'post_author' => '',
'post_content' => '',
'post_date' => '',
'post_excerpt' => '',
'post_modified' => '',
'post_title' => '',
'taxonomy' => '',
'term_id' => '',
'term404' => '',
);
if ( isset( $args['post_content'] ) )
$args['post_content'] = wpseo_strip_shortcode( $args['post_content'] );
if ( isset( $args['post_excerpt'] ) )
$args['post_excerpt'] = wpseo_strip_shortcode( $args['post_excerpt'] );
$r = (object) wp_parse_args( $args, $defaults );
$max_num_pages = 1;
if ( !is_single() ) {
$pagenum = get_query_var( 'paged' );
if ( $pagenum === 0 )
$pagenum = 1;
if ( isset( $wp_query->max_num_pages ) && $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 )
$max_num_pages = $wp_query->max_num_pages;
} else {
global $post;
$pagenum = get_query_var( 'page' );
$max_num_pages = ( isset( $post->post_content ) ) ? substr_count( $post->post_content, '<!--nextpage-->' ) : 1;
if ( $max_num_pages >= 1 )
$max_num_pages++;
}
// Let's do date first as it's a bit more work to get right.
if ( $r->post_date != '' ) {
$date = mysql2date( get_option( 'date_format' ), $r->post_date );
} else {
if ( get_query_var( 'day' ) && get_query_var( 'day' ) != '' ) {
$date = get_the_date();
} else {
if ( single_month_title( ' ', false ) && single_month_title( ' ', false ) != '' ) {
$date = single_month_title( ' ', false );
} else if ( get_query_var( 'year' ) != '' ) {
$date = get_query_var( 'year' );
} else {
$date = '';
}
}
}
$replacements = array(
'%%date%%' => $date,
'%%searchphrase%%' => esc_html( get_query_var( 's' ) ),
'%%page%%' => ( $max_num_pages > 1 && $pagenum > 1 ) ? sprintf( $sep . ' ' . __( 'Page %d of %d', 'wordpress-seo' ), $pagenum, $max_num_pages ) : '',
'%%pagetotal%%' => $max_num_pages,
'%%pagenumber%%' => $pagenum,
'%%term404%%' => sanitize_text_field ( str_replace( '-', ' ', $r->term404 ) ),
);
if ( isset( $r->ID ) ) {
$replacements = array_merge( $replacements, array(
'%%caption%%' => $r->post_excerpt,
'%%category%%' => wpseo_get_terms( $r->ID, 'category' ),
'%%excerpt%%' => ( !empty( $r->post_excerpt ) ) ? strip_tags( $r->post_excerpt ) : wp_html_excerpt( strip_shortcodes( $r->post_content ),155 ),
'%%excerpt_only%%' => strip_tags( $r->post_excerpt ),
'%%focuskw%%' => wpseo_get_value( 'focuskw', $r->ID ),
'%%id%%' => $r->ID,
'%%modified%%' => mysql2date( get_option( 'date_format' ), $r->post_modified ),
'%%name%%' => get_the_author_meta( 'display_name', !empty( $r->post_author ) ? $r->post_author : get_query_var( 'author' ) ),
'%%tag%%' => wpseo_get_terms( $r->ID, 'post_tag' ),
'%%title%%' => stripslashes( $r->post_title ),
'%%userid%%' => !empty( $r->post_author ) ? $r->post_author : get_query_var( 'author' ),
) );
}
if ( !empty( $r->taxonomy ) ) {
$replacements = array_merge( $replacements, array(
'%%category_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ),
'%%tag_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ),
'%%term_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ),
'%%term_title%%' => $r->name,
) );
}
foreach ( $replacements as $var => $repl ) {
if ( !in_array( $var, $omit ) )
$string = str_replace( $var, $repl, $string );
}
if ( strpos( $string, '%%' ) === false ) {
$string = preg_replace( '`\s+`u', ' ', $string );
return trim( $string );
}
if ( isset( $wp_query->query_vars['post_type'] ) && preg_match_all( '`%%pt_([^%]+)%%`u', $string, $matches, PREG_SET_ORDER ) ) {
$pt = get_post_type_object( $wp_query->query_vars['post_type'] );
$pt_plural = $pt_singular = $pt->name;
if ( isset( $pt->labels->singular_name ) )
$pt_singular = $pt->labels->singular_name;
if ( isset( $pt->labels->name ) )
$pt_plural = $pt->labels->name;
$string = str_replace( '%%pt_single%%', $pt_singular, $string );
$string = str_replace( '%%pt_plural%%', $pt_plural, $string );
}
if ( preg_match_all( '`%%cf_([^%]+)%%`u', $string, $matches, PREG_SET_ORDER ) ) {
global $post;
foreach ( $matches as $match ) {
$string = str_replace( $match[0], get_post_meta( $post->ID, $match[1], true ), $string );
}
}
if ( preg_match_all( '`%%ct_desc_([^%]+)?%%`u', $string, $matches, PREG_SET_ORDER ) ) {
global $post;
foreach ( $matches as $match ) {
$terms = get_the_terms( $post->ID, $match[1] );
if( is_array( $terms ) && count( $terms ) > 0 ) {
$term = current( $terms );
$string = str_replace( $match[0], get_term_field( 'description', $term->term_id, $match[1] ), $string );
}
else {
// Make sure that the variable is removed ?
$string = str_replace( $match[0], '', $string );
/* Check for WP_Error object (=invalid taxonomy entered) and if it's an error,
notify in admin dashboard */
if( is_wp_error( $terms ) && is_admin() ) {
add_action( 'admin_notices', 'wpseo_invalid_custom_taxonomy' );
}
}
}
}
if ( preg_match_all( '`%%ct_([^%]+)%%(single%%)?`u', $string, $matches, PREG_SET_ORDER ) ) {
foreach ( $matches as $match ) {
$single = false;
if ( isset( $match[2] ) && $match[2] == 'single%%' )
$single = true;
$ct_terms = wpseo_get_terms( $r->ID, $match[1], $single );
$string = str_replace( $match[0], $ct_terms, $string );
}
}
$string = preg_replace( '`\s+`u', ' ', $string );
return trim( $string );
}
/**
* Throw a notice about an invalid custom taxonomy used
*
* @since 1.4.14
*/
function wpseo_invalid_custom_taxonomy() {
echo '<div class="error"><p>' . sprintf( __( 'The taxonomy you used in (one of your) %s variables is <strong>invalid</strong>. Please %sadjust your settings%s.' ), '%%ct_desc_<custom-tax-name>%%', '<a href="' . admin_url( 'admin.php?page=wpseo_titles#top#taxonomies' ) . '">', '</a>' ) . '</p></div>';
}
/**
* Retrieve a post's terms, comma delimited.
*
* @param int $id ID of the post to get the terms for.
* @param string $taxonomy The taxonomy to get the terms for this post from.
* @param bool $return_single If true, return the first term.
* @return string either a single term or a comma delimited string of terms.
*/
function wpseo_get_terms( $id, $taxonomy, $return_single = false ) {
$output = '';
// If we're on a specific tag, category or taxonomy page, use that.
if ( is_category() || is_tag() || is_tax() ) {
global $wp_query;
$term = $wp_query->get_queried_object();
$output = $term->name;
}
else if ( !empty( $id ) && !empty( $taxonomy ) ) {
$terms = get_the_terms( $id, $taxonomy );
if ( $terms ) {
foreach ( $terms as $term ) {
if ( $return_single ) {
$output = $term->name;
break;
}
else {
$output .= $term->name . ', ';
}
}
$output = rtrim( trim( $output ), ',' );
}
}
/**
* Allows filtering of the terms list used to replace %%category%%, %%tag%% and %%ct_<custom-tax-name>%% variables
* @api string $output Comma-delimited string containing the terms
*/
return apply_filters( 'wpseo_terms', $output );
}
/**
* Retrieve a taxonomy term's meta value.
*
* @param string|object $term term to get the meta value for
* @param string $taxonomy name of the taxonomy to which the term is attached
* @param string $meta meta value to get
* @return bool|mixed value when the meta exists, false when it does not
*/
function wpseo_get_term_meta( $term, $taxonomy, $meta ) {
if ( is_string( $term ) )
$term = get_term_by( 'slug', $term, $taxonomy );
if ( is_object( $term ) )
$term = $term->term_id;
else
return false;
$tax_meta = get_option( 'wpseo_taxonomy_meta' );
if ( isset( $tax_meta[$taxonomy][$term] ) )
$tax_meta = $tax_meta[$taxonomy][$term];
else
return false;
return ( isset( $tax_meta['wpseo_' . $meta] ) ) ? $tax_meta['wpseo_' . $meta] : false;
}
/**
* Strip out the shortcodes with a filthy regex, because people don't properly register their shortcodes.
*
* @param string $text input string that might contain shortcodes
* @return string $text string without shortcodes
*/
function wpseo_strip_shortcode( $text ) {
return preg_replace( '`\[[^\]]+\]`s', '', $text );
}
/**
* Redirect /sitemap.xml to /sitemap_index.xml
*/
function wpseo_xml_redirect_sitemap() {
global $wp_query;
$current_url =( isset($_SERVER["HTTPS"] ) && $_SERVER["HTTPS"]=='on' ) ? 'https://' : 'http://';
$current_url .= $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"];
// must be 'sitemap.xml' and must be 404
if ( home_url( '/sitemap.xml' ) == $current_url && $wp_query->is_404) {
wp_redirect( home_url( '/sitemap_index.xml' ) );
}
}
/**
* Initialize sitemaps. Add sitemap rewrite rules and query var
*/
function wpseo_xml_sitemaps_init() {
$options = get_option( 'wpseo_xml' );
if ( !isset( $options['enablexmlsitemap'] ) || !$options['enablexmlsitemap'] )
return;
// redirects sitemap.xml to sitemap_index.xml
add_action( 'template_redirect', 'wpseo_xml_redirect_sitemap', 0 );
if ( !is_object( $GLOBALS['wp'] ) ) {
return;
}
$GLOBALS['wp']->add_query_var( 'sitemap' );
$GLOBALS['wp']->add_query_var( 'sitemap_n' );
$GLOBALS['wp']->add_query_var( 'xslt' );
add_rewrite_rule( 'sitemap_index\.xml$', 'index.php?sitemap=1', 'top' );
add_rewrite_rule( '([^/]+?)-sitemap([0-9]+)?\.xml$', 'index.php?sitemap=$matches[1]&sitemap_n=$matches[2]', 'top' );
add_rewrite_rule( 'sitemap\.xslt$', 'index.php?xslt=1', 'top' );
}
add_action( 'init', 'wpseo_xml_sitemaps_init', 1 );
/**
* Notify search engines of the updated sitemap.
*/
function wpseo_ping_search_engines( $sitemapurl = null ) {
$options = get_option( 'wpseo_xml' );
$base = $GLOBALS['wp_rewrite']->using_index_permalinks() ? 'index.php/' : '';
if ( $sitemapurl == null )
$sitemapurl = urlencode( home_url( $base . 'sitemap_index.xml' ) );
// Always ping Google and Bing, optionally ping Ask and Yahoo!
wp_remote_get( 'http://www.google.com/webmasters/tools/ping?sitemap=' . $sitemapurl );
wp_remote_get( 'http://www.bing.com/webmaster/ping.aspx?sitemap=' . $sitemapurl );
if ( isset( $options['xml_ping_yahoo'] ) && $options['xml_ping_yahoo'] )
wp_remote_get( 'http://search.yahooapis.com/SiteExplorerService/V1/updateNotification?appid=3usdTDLV34HbjQpIBuzMM1UkECFl5KDN7fogidABihmHBfqaebDuZk1vpLDR64I-&url=' . $sitemapurl );
if ( isset( $options['xml_ping_ask'] ) && $options['xml_ping_ask'] )
wp_remote_get( 'http://submissions.ask.com/ping?sitemap=' . $sitemapurl );
}
add_action( 'wpseo_ping_search_engines', 'wpseo_ping_search_engines' );
function wpseo_store_tracking_response() {
if ( ! wp_verify_nonce( $_POST['nonce'], 'wpseo_activate_tracking' ) )
die();
$options = get_option( 'wpseo' );
$options['tracking_popup'] = 'done';
if ( $_POST['allow_tracking'] == 'yes' )
$options['yoast_tracking'] = 'on';
update_option( 'wpseo', $options );
}
add_action('wp_ajax_wpseo_allow_tracking', 'wpseo_store_tracking_response');
/**
* WPML plugin support: Set titles for custom types / taxonomies as translatable.
* It adds new keys to a wpml-config.xml file for a custom post type title, metadesc, title-ptarchive and metadesc-ptarchive fields translation.
* Documentation: http://wpml.org/documentation/support/language-configuration-files/
*
* @global $sitepress
* @param array $config
* @return array
*/
function wpseo_wpml_config( $config ) {
global $sitepress;
if ( ( is_array( $config ) && isset( $config['wpml-config']['admin-texts']['key'] ) ) && ( is_array( $config['wpml-config']['admin-texts']['key'] ) && $config['wpml-config']['admin-texts']['key'] !== array() ) ) {
$admin_texts = $config['wpml-config']['admin-texts']['key'];
foreach ( $admin_texts as $k => $val ) {
if ( $val['attr']['name'] === 'wpseo_titles' ) {
$translate_cp = array_keys( $sitepress->get_translatable_documents() );
if ( is_array( $translate_cp ) && $translate_cp !== array() ) {
foreach ( $translate_cp as $post_type ) {
$admin_texts[$k]['key'][]['attr']['name'] = 'title-'. $post_type;
$admin_texts[$k]['key'][]['attr']['name'] = 'metadesc-'. $post_type;
$admin_texts[$k]['key'][]['attr']['name'] = 'title-ptarchive-'. $post_type;
$admin_texts[$k]['key'][]['attr']['name'] = 'metadesc-ptarchive-'. $post_type;
$translate_tax = $sitepress->get_translatable_taxonomies(false, $post_type);
if ( is_array( $translate_tax ) && $translate_tax !== array() ) {
foreach ( $translate_tax as $taxonomy ) {
$admin_texts[$k]['key'][]['attr']['name'] = 'title-'. $taxonomy;
$admin_texts[$k]['key'][]['attr']['name'] = 'metadesc-'. $taxonomy;
}
}
}
}
break;
}
}
$config['wpml-config']['admin-texts']['key'] = $admin_texts;
}
return $config;
}
add_filter( 'icl_wpml_config_array', 'wpseo_wpml_config' );
/**
* (Un-)schedule the yoast tracking cronjob if the tracking option has changed
*
* Needs to be done here, rather than in the Yoast_Tracking class as class-tracking.php may not be loaded
*
* @todo - check if this has any impact on other Yoast plugins which may use the same tracking schedule
* hook. If so, may be get any other yoast plugin options, check for the tracking status and
* unschedule based on the combined status
*
* @param mixed $disregard Not needed - Option name if option was added, old value if option was updated
* @param array $value The new value of the option after add/update
* @return void
*/
function schedule_yoast_tracking( $disregard, $value ) {
$current_schedule = wp_next_scheduled( 'yoast_tracking' );
$tracking = ( isset( $value['yoast_tracking'] ) && $value['yoast_tracking'] ) ? true : false;
if( $tracking === true && $current_schedule === false ) {
// The tracking checks daily, but only sends new data every 7 days.
wp_schedule_event( time(), 'daily', 'yoast_tracking' );
}
else if( $tracking === false && $current_schedule !== false ){
wp_clear_scheduled_hook( 'yoast_tracking' );
}
}
add_action( 'add_option_wpseo', 'schedule_yoast_tracking', 10, 2 );
add_action( 'update_option_wpseo', 'schedule_yoast_tracking', 10, 2 );
/**
* Generate an HTML sitemap
*
* @param array $atts The attributes passed to the shortcode.
*
* @return string
*/
function wpseo_sitemap_handler( $atts ) {
global $wpdb;
$atts = shortcode_atts( array(
'authors' => true,
'pages' => true,
'posts' => true,
'archives' => true
), $atts );
$display_authors = ( $atts['authors'] === 'no' ) ? false : true;
$display_pages = ( $atts['pages'] === 'no' ) ? false : true;
$display_posts = ( $atts['posts'] === 'no' ) ? false : true;
$display_archives = ( $atts['archives'] === 'no' ) ? false : true;
$options = get_wpseo_options();
// Delete the transient if any of these are no
if ( $display_authors === 'no' || $display_pages === 'no' || $display_posts === 'no' ) {
delete_transient( 'html-sitemap' );
}
// Get any existing copy of our transient data
if ( false !== ( $output = get_transient( 'html-sitemap' ) ) ) {
// $output .= 'CACHE'; // debug
// return $output;
}
$output = '';
// create author list
if ( $display_authors ) {
$output .= '<h2 id="authors">' . __( 'Authors', 'wordpress-seo' ) . '</h2><ul>';
// use echo => false b/c shortcode format screws up
$author_list = wp_list_authors(
array(
'exclude_admin' => false,
'echo' => false,
)
);
$output .= $author_list;
$output .= '</ul>';
}
// create page list
if ( $display_pages ) {
$output .= '<h2 id="pages">' . __( 'Pages', 'wordpress-seo' ) . '</h2><ul>';
// Some query magic to retrieve all pages that should be excluded, while preventing noindex pages that are set to
// "always" include in HTML sitemap from being excluded.
$exclude_query = "SELECT DISTINCT( post_id ) FROM $wpdb->postmeta
WHERE ( ( meta_key = '_yoast_wpseo_sitemap-html-include' AND meta_value = 'never' )
OR ( meta_key = '_yoast_wpseo_meta-robots-noindex' AND meta_value = 1 ) )
AND post_id NOT IN
( SELECT pm2.post_id FROM $wpdb->postmeta pm2
WHERE pm2.meta_key = '_yoast_wpseo_sitemap-html-include' AND pm2.meta_value = 'always')
ORDER BY post_id ASC";
$excluded_pages = $wpdb->get_results( $exclude_query );
$exclude = array();
foreach ( $excluded_pages as $page ) {
$exclude[] = $page->post_id;
}
unset( $excluded_pages, $page );
/**
* This filter allows excluding more pages should you wish to from the HTML sitemap.
*/
$exclude = implode( ',', apply_filters( 'wpseo_html_sitemap_page_exclude', $exclude ) );
$page_list = wp_list_pages(
array(
'exclude' => $exclude,
'title_li' => '',
'echo' => false,
)
);
$output .= $page_list;
$output .= '</ul>';
}
// create post list
if ( $display_posts ) {
$output .= '<h2 id="posts">' . __( 'Posts', 'wordpress-seo' ) . '</h2><ul>';
// Add categories you'd like to exclude in the exclude here
// possibly have this controlled by shortcode params
$cats = get_categories( 'exclude=' );
foreach ( $cats as $cat ) {
$output .= "<li><h3>" . $cat->cat_name . "</h3>";
$output .= "<ul>";
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'cat' => $cat->cat_ID,
'meta_query' => array(
'relation' => 'OR',
// include if this key doesn't exists
array(
'key' => '_yoast_wpseo_meta-robots-noindex',
'value' => '', // This is ignored, but is necessary...
'compare' => 'NOT EXISTS'
),
// OR if key does exists include if it is not 1
array(
'key' => '_yoast_wpseo_meta-robots-noindex',
'value' => 1,
'compare' => '!='
),
// OR this key overrides it
array(
'key' => '_yoast_wpseo_sitemap-html-include',
'value' => 'always',
'compare' => '='
)
)
);
$posts = get_posts( $args );
foreach ( $posts as $post ) {
$category = get_the_category( $post->ID );
// Only display a post link once, even if it's in multiple categories
if ( $category[0]->cat_ID == $cat->cat_ID ) {
$output .= '<li><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></li>';
}
}
$output .= "</ul>";
$output .= "</li>";
}
}
$output .= '</ul>';
// get all public non-builtin post types
$args = array(
'public' => true,
'_builtin' => false
);
$post_types = get_post_types( $args, 'object' );
// create an noindex array of post types and taxonomies
$noindex = array();
foreach ( $options as $key => $value ) {
if ( strpos( $key, 'noindex-' ) === 0 && $value == 'on' )
$noindex[] = $key;
}
// create custom post type list
foreach ( $post_types as $post_type ) {
if ( ! in_array( 'noindex-' . $post_type->name, $noindex ) ) {
$output .= '<h2 id="' . $post_type->name . '">' . __( $post_type->label, 'wordpress-seo' ) . '</h2><ul>';
$output .= create_type_sitemap_template( $post_type );
$output .= '</ul>';
}
}
// $output = '';
// create archives list
if ( $display_archives ) {
$output .= '<h2 id="archives">' . __( 'Archives', 'wordpress-seo' ) . '</h2><ul>';
foreach ( $post_types as $post_type ) {
if ( $post_type->has_archive && ! in_array( 'noindex-ptarchive-' . $post_type->name, $noindex ) ) {
$output .= '<a href="' . get_post_type_archive_link( $post_type->name ) . '">' . $post_type->labels->name . '</a>';
$output .= create_type_sitemap_template( $post_type );
}
}
$output .= '</ul>';
}
set_transient( 'html-sitemap', $output, 60 );
return $output;
}
add_shortcode( 'wpseo_sitemap', 'wpseo_sitemap_handler' );
function create_type_sitemap_template( $post_type ) {
// $output = '<h2 id="' . $post_type->name . '">' . __( $post_type->label, 'wordpress-seo' ) . '</h2><ul>';
$output = '';
// Get all registered taxonomy of this post type
$taxs = get_object_taxonomies( $post_type->name, 'object' );
// Build the taxonomy tree
require_once( WPSEO_PATH . 'inc/class-sitemap-walker.php' );
$walker = new Sitemap_Walker();
foreach ( $taxs as $key => $tax ) {
if ( $tax->public !== 1 )
continue;
$args = array(
'post_type' => $post_type->name,
'tax_query' => array(
array(
'taxonomy' => $key,
'field' => 'id',
'terms' => -1,
'operator' => 'NOT',
)
)
);
$query = new WP_Query( $args );
$title_li = $query->have_posts() ? $tax->labels->name : '';
$output .= wp_list_categories(
array(
'title_li' => $title_li,
'echo' => false,
'taxonomy' => $key,
'show_option_none' => '',
// 'hierarchical' => 0, // uncomment this for a flat list
'walker' => $walker,
'post_type' => $post_type->name // arg used by the Walker class
)
);
}
$output .= '<br />';
return $output;
}