/var/www/hkosl.com/aga/wp-content/plugins/wordpress-seo/frontend/class-frontend.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
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
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Frontend
 */

/**
 * Main frontend class for Yoast SEO, responsible for the SEO output as well as removing
 * default WordPress output.
 */
class WPSEO_Frontend {

    
/**
     * Instance of this class.
     *
     * @var object
     */
    
public static $instance;

    
/**
     * Toggle indicating whether output buffering has been started.
     *
     * @var boolean
     */
    
private $ob_started false;

    
/**
     * Holds the canonical URL for the current page.
     *
     * @var string
     */
    
private $canonical null;

    
/**
     * Holds the canonical URL for the current page that cannot be overriden by a manual canonical input.
     *
     * @var string
     */
    
private $canonical_no_override null;

    
/**
     * Holds the canonical URL for the current page without pagination.
     *
     * @var string
     */
    
private $canonical_unpaged null;

    
/**
     * Holds the pages meta description.
     *
     * @var string
     */
    
private $metadesc null;

    
/**
     * Holds the generated title for the page.
     *
     * @var string
     */
    
private $title null;

    
/**
     * @var WPSEO_Frontend_Page_Type
     */
    
protected $frontend_page_type;

    
/**
     * @var WPSEO_WooCommerce_Shop_Page
     */
    
protected $woocommerce_shop_page;

    
/**
     * Class constructor.
     *
     * Adds and removes a lot of filters.
     */
    
protected function __construct() {

        
add_action'wp_head', array( $this'front_page_specific_init' ), );
        
add_action'wp_head', array( $this'head' ), );

        
// The head function here calls action wpseo_head, to which we hook all our functionality.
        
add_action'wpseo_head', array( $this'debug_mark' ), );
        
add_action'wpseo_head', array( $this'metadesc' ), );
        
add_action'wpseo_head', array( $this'robots' ), 10 );
        
add_action'wpseo_head', array( $this'canonical' ), 20 );
        
add_action'wpseo_head', array( $this'adjacent_rel_links' ), 21 );

        
// Remove actions that we will handle through our wpseo_head call, and probably change the output of.
        
remove_action'wp_head''rel_canonical' );
        
remove_action'wp_head''index_rel_link' );
        
remove_action'wp_head''start_post_rel_link' );
        
remove_action'wp_head''adjacent_posts_rel_link_wp_head' );
        
remove_action'wp_head''noindex');

        
// When using WP 4.4, just use the new hook.
        
add_filter'pre_get_document_title', array( $this'title' ), 15 );
        
add_filter'wp_title', array( $this'title' ), 15);

        
add_filter'thematic_doctitle', array( $this'title' ), 15 );

        
add_action'wp', array( $this'page_redirect' ), 99 );

        
add_action'template_redirect', array( $this'noindex_feed' ) );

        
add_filter'loginout', array( $this'nofollow_link' ) );
        
add_filter'register', array( $this'nofollow_link' ) );

        
// Add support for shortcodes to category descriptions.
        
add_filter'category_description', array( $this'custom_category_descriptions_add_shortcode_support' ) );

        
// Fix the WooThemes woo_title() output.
        
add_filter'woo_title', array( $this'fix_woo_title' ), 99 );

        if ( 
WPSEO_Options::get'disable-date'false )
            || 
WPSEO_Options::get'disable-author'false )
            || 
WPSEO_Options::get'disable-post_format'false )
        ) {
            
add_action'wp', array( $this'archive_redirect' ) );
        }
        
add_action'template_redirect', array( $this'attachment_redirect' ), );

        
add_filter'the_content_feed', array( $this'embed_rssfooter' ) );
        
add_filter'the_excerpt_rss', array( $this'embed_rssfooter_excerpt' ) );

        
// For WordPress functions below 4.4.
        
if ( WPSEO_Options::get'forcerewritetitle'false ) && ! current_theme_supports'title-tag' ) ) {
            
add_action'template_redirect', array( $this'force_rewrite_output_buffer' ), 99999 );
            
add_action'wp_footer', array( $this'flush_cache' ), - );
        }

        if ( 
WPSEO_Options::get'title_test') > ) {
            
add_filter'wpseo_title', array( $this'title_test_helper' ) );
        }

        
$this->woocommerce_shop_page = new WPSEO_WooCommerce_Shop_Page();

        
$integrations = array(
            new 
WPSEO_Frontend_Primary_Category(),
            new 
WPSEO_Schema(),
            new 
WPSEO_Handle_404(),
            new 
WPSEO_Remove_Reply_To_Com(),
            new 
WPSEO_OpenGraph_OEmbed(),
            
$this->woocommerce_shop_page,
        );

        foreach ( 
$integrations as $integration ) {
            
$integration->register_hooks();
        }
    }

    
/**
     * Initialize the functions that only need to run on the frontpage.
     */
    
public function front_page_specific_init() {
        if ( ! 
is_front_page() ) {
            return;
        }

        
add_action'wpseo_head', array( $this'webmaster_tools_authentication' ), 90 );
    }

    
/**
     * Resets the entire class so canonicals, titles etc can be regenerated.
     */
    
public function reset() {
        foreach ( 
get_class_vars__CLASS__ ) as $name => $default ) {
            switch ( 
$name ) {
                
// Clear the class instance to be re-initialized.
                
case 'instance':
                    
self::$instance null;
                    break;

                
// Exclude these properties from being reset.
                
case 'woocommerce_shop_page':
                    break;

                
// Reset property to the class default.
                
default:
                    
$this->$name $default;
                    break;
            }
        }
        
WPSEO_Options::ensure_options_exist();
    }

    
/**
     * Get the singleton instance of this class.
     *
     * @return WPSEO_Frontend
     */
    
public static function get_instance() {
        if ( ! ( 
self::$instance instanceof self ) ) {
            
self::$instance = new self();
        }

        return 
self::$instance;
    }

    
/**
     * Override Woo's title with our own.
     *
     * @param string $title Title string.
     *
     * @return string
     */
    
public function fix_woo_title$title ) {
        return 
$this->title$title );
    }

    
/**
     * Used for static home and posts pages as well as singular titles.
     *
     * @param object|null $object If filled, object to get the title for.
     *
     * @return string
     */
    
public function get_content_title$object null ) {
        if ( 
$object === null ) {
            
$object $GLOBALS['wp_query']->get_queried_object();
        }

        
$title $this->get_seo_title$object );
        if ( 
$title !== '' ) {
            return 
$title;
        }

        
$post_type = ( isset( $object->post_type ) ? $object->post_type $object->query_var );

        return 
$this->get_title_from_options'title-' $post_type$object );
    }

    
/**
     * Retrieves the SEO title set in the SEO widget.
     *
     * @param null $object Object to retrieve the title from.
     *
     * @return string The SEO title for the specified object, or queried object if not supplied.
     */
    
public function get_seo_title$object null ) {
        if ( 
$object === null ) {
            
$object $GLOBALS['wp_query']->get_queried_object();
        }

        if ( ! 
is_object$object ) ) {
            return 
$this->get_title_from_options'title-404-wpseo' );
        }

        
$title $this->get_seo_meta_value'title'$object->ID );

        if ( 
$title !== '' ) {
            return 
$this->replace_vars$title$object );
        }

        return 
$title;
    }

    
/**
     * Used for category, tag, and tax titles.
     *
     * @return string
     */
    
public function get_taxonomy_title() {
        
$object $GLOBALS['wp_query']->get_queried_object();

        
$title WPSEO_Taxonomy_Meta::get_term_meta$object$object->taxonomy'title' );

        if ( 
is_string$title ) && $title !== '' ) {
            return 
$this->replace_vars$title$object );
        }

        return 
$this->get_title_from_options'title-tax-' $object->taxonomy$object );
    }

    
/**
     * Used for author titles.
     *
     * @return string
     */
    
public function get_author_title() {
        
$author_id get_query_var'author' );
        
$title     trimget_the_author_meta'wpseo_title'$author_id ) );

        if ( 
$title !== '' ) {
            return 
$this->replace_vars$title, array() );
        }

        return 
$this->get_title_from_options'title-author-wpseo' );
    }

    
/**
     * Simple function to use to pull data from $options.
     *
     * All titles pulled from options will be run through the $this->replace_vars function.
     *
     * @param string       $index      Name of the page to get the title from the settings for.
     * @param object|array $var_source Possible object to pull variables from.
     *
     * @return string
     */
    
public function get_title_from_options$index$var_source = array() ) {
        
$template WPSEO_Options::get$index'' );
        if ( 
$template === '' ) {
            if ( 
is_singular() ) {
                return 
$this->replace_vars'%%title%% %%sep%% %%sitename%%'$var_source );
            }

            return 
'';
        }

        return 
$this->replace_vars$template$var_source );
    }

    
/**
     * Get the default title for the current page.
     *
     * This is the fallback title generator used when a title hasn't been set for the specific content, taxonomy, author
     * details, or in the options. It scrubs off any present prefix before or after the title (based on $seplocation) in
     * order to prevent duplicate seperations from appearing in the title (this happens when a prefix is supplied to the
     * wp_title call on singular pages).
     *
     * @param string $sep         The separator used between variables.
     * @param string $seplocation Whether the separator should be left or right.
     * @param string $title       Possible title that's already set.
     *
     * @return string
     */
    
public function get_default_title$sep$seplocation$title '' ) {
        if ( 
'right' === $seplocation ) {
            
$regex '`\s*' preg_quotetrim$sep ), '`' ) . '\s*`u';
        }
        else {
            
$regex '`^\s*' preg_quotetrim$sep ), '`' ) . '\s*`u';
        }
        
$title preg_replace$regex''$title );

        if ( ! 
is_string$title ) || ( is_string$title ) && $title === '' ) ) {
            
$title WPSEO_Utils::get_site_name();
            
$title $this->add_paging_to_title$sep$seplocation$title );
            
$title $this->add_to_title$sep$seplocation$titlewp_strip_all_tagsget_bloginfo'description' ), true ) );

            return 
$title;
        }

        
$title $this->add_paging_to_title$sep$seplocation$title );
        
$title $this->add_to_title$sep$seplocation$titlewp_strip_all_tagsget_bloginfo'name' ), true ) );

        return 
$title;
    }

    
/**
     * This function adds paging details to the title.
     *
     * @param string $sep         Separator used in the title.
     * @param string $seplocation Whether the separator should be left or right.
     * @param string $title       The title to append the paging info to.
     *
     * @return string
     */
    
public function add_paging_to_title$sep$seplocation$title ) {
        global 
$wp_query;

        if ( ! empty( 
$wp_query->query_vars['paged'] ) && $wp_query->query_vars['paged'] > ) {
            return 
$this->add_to_title$sep$seplocation$title$wp_query->query_vars['paged'] . '/' $wp_query->max_num_pages );
        }

        return 
$title;
    }

    
/**
     * Add part to title, while ensuring that the $seplocation variable is respected.
     *
     * @param string $sep         Separator used in the title.
     * @param string $seplocation Whether the separator should be left or right.
     * @param string $title       The title to append the title_part to.
     * @param string $title_part  The part to append to the title.
     *
     * @return string
     */
    
public function add_to_title$sep$seplocation$title$title_part ) {
        if ( 
'right' === $seplocation ) {
            return 
$title $sep $title_part;
        }

        return 
$title_part $sep $title;
    }

    
/**
     * Main title function.
     *
     * @param string $title              Title that might have already been set.
     * @param string $separator          Separator determined in theme (unused).
     * @param string $separator_location Whether the separator should be left or right.
     *
     * @return string
     */
    
public function title$title$separator ''$separator_location '' ) {
        if ( 
is_null$this->title ) ) {
            
$this->title $this->generate_title$title$separator_location );
        }

        return 
$this->title;
    }

    
/**
     * Main title generation function.
     *
     * @param string $title              Title that might have already been set.
     * @param string $separator_location Whether the separator should be left or right.
     *
     * @return string
     */
    
private function generate_title$title$separator_location ) {

        if ( 
is_feed() ) {
            return 
$title;
        }

        
$separator $this->replace_vars'%%sep%%', array() );
        
$separator ' ' trim$separator ) . ' ';

        if ( 
'' === trim$separator_location ) ) {
            
$separator_location = ( is_rtl() ) ? 'left' 'right';
        }

        
// This needs to be kept track of in order to generate
        // default titles for singular pages.
        
$original_title $title;

        
// This flag is used to determine if any additional
        // processing should be done to the title after the
        // main section of title generation completes.
        
$modified_title true;

        
// This variable holds the page-specific title part
        // that is used to generate default titles.
        
$title_part '';

        if ( 
WPSEO_Frontend_Page_Type::is_home_static_page() ) {
            
$title $this->get_content_title();
        }
        elseif ( 
WPSEO_Frontend_Page_Type::is_home_posts_page() ) {
            
$title $this->get_title_from_options'title-home-wpseo' );
        }
        elseif ( 
$this->woocommerce_shop_page->is_shop_page() ) {
            
$title $this->get_woocommerce_title();

            if ( ! 
is_string$title ) || $title === '' ) {
                
$title $this->get_post_type_archive_title$separator$separator_location );
            }
        }
        elseif ( 
WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$post  get_postWPSEO_Frontend_Page_Type::get_simple_page_id() );
            
$title $this->get_content_title$post );

            if ( ! 
is_string$title ) || '' === $title ) {
                
$title_part $original_title;
            }
        }
        elseif ( 
is_search() ) {
            
$title $this->get_title_from_options'title-search-wpseo' );

            if ( ! 
is_string$title ) || '' === $title ) {
                
/* translators: %s expands to the search phrase. */
                
$title_part sprintf__'Search for "%s"''wordpress-seo' ), esc_htmlget_search_query() ) );
            }
        }
        elseif ( 
is_category() || is_tag() || is_tax() ) {
            
$title $this->get_taxonomy_title();

            if ( ! 
is_string$title ) || '' === $title ) {
                if ( 
is_category() ) {
                    
$title_part single_cat_title''false );
                }
                elseif ( 
is_tag() ) {
                    
$title_part single_tag_title''false );
                }
                else {
                    
$title_part single_term_title''false );
                    if ( 
$title_part === '' ) {
                        
$term       $GLOBALS['wp_query']->get_queried_object();
                        
$title_part $term->name;
                    }
                }
            }
        }
        elseif ( 
is_author() ) {
            
$title $this->get_author_title();

            if ( ! 
is_string$title ) || '' === $title ) {
                
$title_part get_the_author_meta'display_name'get_query_var'author' ) );
            }
        }
        elseif ( 
is_post_type_archive() ) {
            
$title $this->get_post_type_archive_title$separator$separator_location );
        }
        elseif ( 
is_archive() ) {
            
$title $this->get_title_from_options'title-archive-wpseo' );

            
// @todo [JRF => Yoast] Should these not use the archive default if no title found ?
            // WPSEO_Options::get_default( 'wpseo_titles', 'title-archive-wpseo' )
            // Replacement would be needed!
            
if ( empty( $title ) ) {
                if ( 
is_month() ) {
                    
/* translators: %s expands to a time period, i.e. month name, year or specific date. */
                    
$title_part sprintf__'%s Archives''wordpress-seo' ), single_month_title' 'false ) );
                }
                elseif ( 
is_year() ) {
                    
/* translators: %s expands to a time period, i.e. month name, year or specific date. */
                    
$title_part sprintf__'%s Archives''wordpress-seo' ), get_query_var'year' ) );
                }
                elseif ( 
is_day() ) {
                    
/* translators: %s expands to a time period, i.e. month name, year or specific date. */
                    
$title_part sprintf__'%s Archives''wordpress-seo' ), get_the_date() );
                }
                else {
                    
$title_part __'Archives''wordpress-seo' );
                }
            }
        }
        elseif ( 
is_404() ) {

            
$title $this->get_title_from_options'title-404-wpseo' );

            
// @todo [JRF => Yoast] Should these not use the 404 default if no title found ?
            // WPSEO_Options::get_default( 'wpseo_titles', 'title-404-wpseo' )
            // Replacement would be needed!
            
if ( empty( $title ) ) {
                
$title_part __'Page not found''wordpress-seo' );
            }
        }
        else {
            
// In case the page type is unknown, leave the title alone.
            
$modified_title false;

            
// If you would like to generate a default title instead,
            // the following code could be used
            // $title_part = $title;
            // instead of the line above.
        
}

        if ( ( 
$modified_title && empty( $title ) ) || ! empty( $title_part ) ) {
            
$title $this->get_default_title$separator$separator_location$title_part );
        }

        if ( 
defined'ICL_LANGUAGE_CODE' ) && false !== strpos$titleICL_LANGUAGE_CODE ) ) {
            
$title str_replace' @' ICL_LANGUAGE_CODE''$title );
        }

        
/**
         * Filter: 'wpseo_title' - Allow changing the Yoast SEO <title> output.
         *
         * @api string $title The page title being put out.
         */

        
return esc_htmlwp_strip_all_tagsstripslashesapply_filters'wpseo_title'$title ) ), true ) );
    }

    
/**
     * Function used when title needs to be force overridden.
     *
     * @return string
     */
    
public function force_wp_title() {
        global 
$wp_query;
        
$old_wp_query null;

        if ( ! 
$wp_query->is_main_query() ) {
            
$old_wp_query $wp_query;
            
wp_reset_query();
        }

        
$title $this->title'' );

        if ( ! empty( 
$old_wp_query ) ) {
            
$GLOBALS['wp_query'] = $old_wp_query;
            unset( 
$old_wp_query );
        }

        return 
$title;
    }

    
/**
     * Outputs or returns the debug marker, which is also used for title replacement when force rewrite is active.
     *
     * @return string The marker that will be echoed.
     */
    
public function debug_mark() {
        
$marker $this->get_debug_mark();

        echo 
"\n${marker}\n";

        return 
'';
    }

    
/**
     * Returns the debug marker, which is also used for title replacement when force rewrite is active.
     *
     * @return string The generated marker.
     */
    
public function get_debug_mark() {
        return 
sprintf(
            
'<!-- This site is optimized with the %1$s %2$s - https://yoast.com/wordpress/plugins/seo/ -->',
            
esc_html$this->head_product_name() ),
            
/**
             * Filter: 'wpseo_hide_version' - can be used to hide the Yoast SEO version in the debug marker (only available in Yoast SEO Premium).
             *
             * @api bool
             */
            
( ( apply_filters'wpseo_hide_version'false ) && $this->is_premium() ) ? '' 'v' WPSEO_VERSION )
        );
    }

    
/**
     * Output Webmaster Tools authentication strings.
     */
    
public function webmaster_tools_authentication() {
        
// Baidu.
        
$this->webmaster_tools_helper'baiduverify''baidu-site-verification' );

        
// Bing.
        
$this->webmaster_tools_helper'msverify''msvalidate.01' );

        
// Google.
        
$this->webmaster_tools_helper'googleverify''google-site-verification' );

        
// Pinterest.
        
$this->webmaster_tools_helper'pinterestverify''p:domain_verify' );

        
// Yandex.
        
$this->webmaster_tools_helper'yandexverify''yandex-verification' );
    }

    
/**
     * Helper function for authentication.
     *
     * @param string $option_key Option key.
     * @param string $tag_name   The tag name.
     *
     * @return void
     */
    
private function webmaster_tools_helper$option_key$tag_name ) {
        
$auth WPSEO_Options::get$option_key'' );
        if ( 
$auth !== '' ) {
            
printf'<meta name="%1$s" content="%2$s" />' "\n"$tag_name$auth );
        }
    }

    
/**
     * Main wrapper function attached to wp_head. This combines all the output on the frontend of the Yoast SEO plugin.
     */
    
public function head() {
        global 
$wp_query;

        
$old_wp_query null;

        if ( ! 
$wp_query->is_main_query() ) {
            
$old_wp_query $wp_query;
            
wp_reset_query();
        }

        
/**
         * Action: 'wpseo_head' - Allow other plugins to output inside the Yoast SEO section of the head section.
         */
        
do_action'wpseo_head' );

        echo 
$this->show_closing_debug_mark();

        if ( ! empty( 
$old_wp_query ) ) {
            
$GLOBALS['wp_query'] = $old_wp_query;
            unset( 
$old_wp_query );
        }
    }

    
/**
     * Output the meta robots value.
     *
     * @return string
     */
    
public function robots() {
        global 
$wp_query$post;

        
$robots           = array();
        
$robots['index']  = 'index';
        
$robots['follow'] = 'follow';
        
$robots['other']  = array();

        if ( 
is_object$post ) && WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$private 'private' === $post->post_status;
            
$noindex = ! WPSEO_Post_Type::is_post_type_indexable$post->post_type );

            if ( 
$noindex || $private ) {
                
$robots['index'] = 'noindex';
            }

            
$robots $this->robots_for_single_post$robotsWPSEO_Frontend_Page_Type::get_simple_page_id() );
        }
        else {
            if ( 
is_search() || is_404() ) {
                
$robots['index'] = 'noindex';
            }
            elseif ( 
is_tax() || is_tag() || is_category() ) {
                
$term $wp_query->get_queried_object();
                if ( 
is_object$term ) && ( WPSEO_Options::get'noindex-tax-' $term->taxonomyfalse ) ) ) {
                    
$robots['index'] = 'noindex';
                }

                
// Three possible values, index, noindex and default, do nothing for default.
                
$term_meta WPSEO_Taxonomy_Meta::get_term_meta$term$term->taxonomy'noindex' );
                if ( 
is_string$term_meta ) && 'default' !== $term_meta ) {
                    
$robots['index'] = $term_meta;
                }

                if ( 
$this->is_multiple_terms_query() ) {
                    
$robots['index'] = 'noindex';
                }
            }
            elseif ( 
is_author() ) {
                if ( 
WPSEO_Options::get'noindex-author-wpseo'false ) ) {
                    
$robots['index'] = 'noindex';
                }
                
$curauth $wp_query->get_queried_object();
                if ( 
WPSEO_Options::get'noindex-author-noposts-wpseo'false ) && count_user_posts$curauth->ID'any' ) === ) {
                    
$robots['index'] = 'noindex';
                }
                if ( 
get_user_meta$curauth->ID'wpseo_noindex_author'true ) === 'on' ) {
                    
$robots['index'] = 'noindex';
                }
            }
            elseif ( 
is_date() && WPSEO_Options::get'noindex-archive-wpseo'false ) ) {
                
$robots['index'] = 'noindex';
            }
            elseif ( 
is_home() ) {
                
$page_for_posts get_option'page_for_posts' );
                if ( 
$page_for_posts ) {
                    
$robots $this->robots_for_single_post$robots$page_for_posts );
                }
                unset( 
$page_for_posts );
            }
            elseif ( 
is_post_type_archive() ) {
                
$post_type $this->get_queried_post_type();

                if ( 
WPSEO_Options::get'noindex-ptarchive-' $post_typefalse ) ) {
                    
$robots['index'] = 'noindex';
                }
            }

            unset( 
$robot );
        }

        
// Force override to respect the WP settings.
        
if ( '0' === (string) get_option'blog_public' ) || isset( $_GET['replytocom'] ) ) {
            
$robots['index'] = 'noindex';
        }

        
$robotsstr $robots['index'] . ',' $robots['follow'];

        if ( 
$robots['other'] !== array() ) {
            
$robots['other'] = array_unique$robots['other'] ); // @todo Most likely no longer needed, needs testing.
            
$robotsstr      .= ',' implode','$robots['other'] );
        }

        
$robotsstr preg_replace'`^index,follow,?`'''$robotsstr );
        
$robotsstr str_replace( array( 'noodp,''noodp' ), ''$robotsstr );

        
/**
         * Filter: 'wpseo_robots' - Allows filtering of the meta robots output of Yoast SEO.
         *
         * @api string $robotsstr The meta robots directives to be echoed.
         */
        
$robotsstr apply_filters'wpseo_robots'$robotsstr );

        if ( 
is_string$robotsstr ) && $robotsstr !== '' ) {
            echo 
'<meta name="robots" content="'esc_attr$robotsstr ), '"/>'"\n";
        }

        
// If a page has a noindex, it should _not_ have a canonical, as these are opposing indexing directives.
        
if ( strpos$robotsstr'noindex' ) !== false ) {
            
remove_action'wpseo_head', array( $this'canonical' ), 20 );
        }

        return 
$robotsstr;
    }

    
/**
     * Determine $robots values for a single post.
     *
     * @param array $robots  Robots data array.
     * @param int   $post_id The post ID for which to determine the $robots values, defaults to current post.
     *
     * @return array
     */
    
public function robots_for_single_post$robots$post_id ) {
        
$noindex $this->get_seo_meta_value'meta-robots-noindex'$post_id );
        if ( 
$noindex === '1' ) {
            
$robots['index'] = 'noindex';
        }
        elseif ( 
$noindex === '2' ) {
            
$robots['index'] = 'index';
        }

        if ( 
$this->get_seo_meta_value'meta-robots-nofollow'$post_id ) === '1' ) {
            
$robots['follow'] = 'nofollow';
        }

        
$meta_robots_adv $this->get_seo_meta_value'meta-robots-adv'$post_id );

        if ( 
$meta_robots_adv !== '' && ( $meta_robots_adv !== '-' && $meta_robots_adv !== 'none' ) ) {
            
$meta_robots_adv explode','$meta_robots_adv );
            foreach ( 
$meta_robots_adv as $robot ) {
                
$robots['other'][] = $robot;
            }
            unset( 
$robot );
        }
        unset( 
$meta_robots_adv );

        return 
$robots;
    }

    
/**
     * This function normally outputs the canonical but is also used in other places to retrieve
     * the canonical URL for the current page.
     *
     * @param bool $echo        Whether or not to output the canonical element.
     * @param bool $un_paged    Whether or not to return the canonical with or without pagination added to the URL.
     * @param bool $no_override Whether or not to return a manually overridden canonical.
     *
     * @return string $canonical
     */
    
public function canonical$echo true$un_paged false$no_override false ) {
        if ( 
is_null$this->canonical ) ) {
            
$this->generate_canonical();
        }

        
$canonical $this->canonical;

        if ( 
$un_paged ) {
            
$canonical $this->canonical_unpaged;
        }
        elseif ( 
$no_override ) {
            
$canonical $this->canonical_no_override;
        }

        if ( 
$echo === false ) {
            return 
$canonical;
        }

        if ( 
is_string$canonical ) && '' !== $canonical ) {
            echo 
'<link rel="canonical" href="' esc_url$canonicalnull'other' ) . '" />' "\n";
        }
    }

    
/**
     * This function normally outputs the canonical but is also used in other places to retrieve
     * the canonical URL for the current page.
     *
     * @return void
     */
    
private function generate_canonical() {
        
$canonical          false;
        
$canonical_override false;

        
// Set decent canonicals for homepage, singulars and taxonomy pages.
        
if ( is_singular() ) {
            
$obj       get_queried_object();
            
$canonical get_permalink$obj->ID );

            
$this->canonical_unpaged $canonical;

            
$canonical_override $this->get_seo_meta_value'canonical' );

            
// Fix paginated pages canonical, but only if the page is truly paginated.
            
if ( get_query_var'page' ) > ) {
                
$num_pages = ( substr_count$obj->post_content'<!--nextpage-->' ) + );
                if ( 
$num_pages && get_query_var'page' ) <= $num_pages ) {
                    if ( ! 
$GLOBALS['wp_rewrite']->using_permalinks() ) {
                        
$canonical add_query_arg'page'get_query_var'page' ), $canonical );
                    }
                    else {
                        
$canonical user_trailingslashittrailingslashit$canonical ) . get_query_var'page' ) );
                    }
                }
            }
        }
        else {
            if ( 
is_search() ) {
                
$search_query get_search_query();

                
// Regex catches case when /search/page/N without search term is itself mistaken for search term. R.
                
if ( ! empty( $search_query ) && ! preg_match'|^page/\d+$|'$search_query ) ) {
                    
$canonical get_search_link();
                }
            }
            elseif ( 
is_front_page() ) {
                
$canonical WPSEO_Utils::home_url();
            }
            elseif ( 
WPSEO_Frontend_Page_Type::is_posts_page() ) {

                
$posts_page_id get_option'page_for_posts' );
                
$canonical     $this->get_seo_meta_value'canonical'$posts_page_id );

                if ( empty( 
$canonical ) ) {
                    
$canonical get_permalink$posts_page_id );
                }
            }
            elseif ( 
is_tax() || is_tag() || is_category() ) {

                
$term get_queried_object();

                if ( ! empty( 
$term ) && ! $this->is_multiple_terms_query() ) {

                    
$canonical_override WPSEO_Taxonomy_Meta::get_term_meta$term$term->taxonomy'canonical' );
                    
$term_link          get_term_link$term$term->taxonomy );

                    if ( ! 
is_wp_error$term_link ) ) {
                        
$canonical $term_link;
                    }
                }
            }
            elseif ( 
is_post_type_archive() ) {
                
$post_type $this->get_queried_post_type();
                
$canonical get_post_type_archive_link$post_type );
            }
            elseif ( 
is_author() ) {
                
$canonical get_author_posts_urlget_query_var'author' ), get_query_var'author_name' ) );
            }
            elseif ( 
is_archive() ) {
                if ( 
is_date() ) {
                    if ( 
is_day() ) {
                        
$canonical get_day_linkget_query_var'year' ), get_query_var'monthnum' ), get_query_var'day' ) );
                    }
                    elseif ( 
is_month() ) {
                        
$canonical get_month_linkget_query_var'year' ), get_query_var'monthnum' ) );
                    }
                    elseif ( 
is_year() ) {
                        
$canonical get_year_linkget_query_var'year' ) );
                    }
                }
            }

            
$this->canonical_unpaged $canonical;

            if ( 
$canonical && get_query_var'paged' ) > ) {
                global 
$wp_rewrite;
                if ( ! 
$wp_rewrite->using_permalinks() ) {
                    if ( 
is_front_page() ) {
                        
$canonical trailingslashit$canonical );
                    }
                    
$canonical add_query_arg'paged'get_query_var'paged' ), $canonical );
                }
                else {
                    if ( 
is_front_page() ) {
                        
$canonical WPSEO_Sitemaps_Router::get_base_url'' );
                    }
                    
$canonical user_trailingslashittrailingslashit$canonical ) . trailingslashit$wp_rewrite->pagination_base ) . get_query_var'paged' ) );
                }
            }
        }

        
$this->canonical_no_override $canonical;

        if ( 
is_string$canonical ) && $canonical !== '' ) {
            
// Force canonical links to be absolute, relative is NOT an option.
            
if ( WPSEO_Utils::is_url_relative$canonical ) === true ) {
                
$canonical $this->base_url$canonical );
            }
        }

        if ( 
is_string$canonical_override ) && $canonical_override !== '' ) {
            
$canonical $canonical_override;
        }

        
/**
         * Filter: 'wpseo_canonical' - Allow filtering of the canonical URL put out by Yoast SEO.
         *
         * @api string $canonical The canonical URL.
         */
        
$this->canonical apply_filters'wpseo_canonical'$canonical );
    }

    
/**
     * Parse the home URL setting to find the base URL for relative URLs.
     *
     * @param string $path Optional path string.
     *
     * @return string
     */
    
private function base_url$path null ) {
        
$url get_option'home' );

        
$parts wp_parse_url$url );

        
$base_url trailingslashit$parts['scheme'] . '://' $parts['host'] );

        if ( ! 
is_null$path ) ) {
            
$base_url .= ltrim$path'/' );
        }

        return 
$base_url;
    }

    
/**
     * Adds 'prev' and 'next' links to archives.
     *
     * @link  http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html
     * @since 1.0.3
     */
    
public function adjacent_rel_links() {
        
/**
         * Filter: 'wpseo_disable_adjacent_rel_links' - Allows disabling of Yoast adjacent links if this is being handled by other code.
         *
         * @api bool $links_generated Indicates if other code has handled adjacent links.
         */
        
if ( true === apply_filters'wpseo_disable_adjacent_rel_links'false ) ) {
            return;
        }

        if ( 
is_singular() ) {
            
$this->rel_links_single();
            return;
        }

        
$this->rel_links_archive();
    }

    
/**
     * Output the rel next/prev links for a single post / page.
     *
     * @return void
     */
    
protected function rel_links_single() {
        
$num_pages 1;

        
$queried_object get_queried_object();
        if ( ! empty( 
$queried_object ) ) {
            
$num_pages = ( substr_count$queried_object->post_content'<!--nextpage-->' ) + );
        }

        if ( 
$num_pages === ) {
            return;
        }

        
$page max1, (int) get_query_var'page' ) );
        
$url  get_permalinkget_queried_object_id() );

        if ( 
$page ) {
            
$this->adjacent_rel_link'prev'$url, ( $page ), 'page' );
        }

        if ( 
$page $num_pages ) {
            
$this->adjacent_rel_link'next'$url, ( $page ), 'page' );
        }
    }

    
/**
     * Output the rel next/prev links for an archive page.
     */
    
protected function rel_links_archive() {
        
$url $this->canonicalfalsetruetrue );

        if ( ! 
is_string$url ) || $url === '' ) {
            return;
        }

        
$paged max1, (int) get_query_var'paged' ) );

        if ( 
$paged === ) {
            
$this->adjacent_rel_link'prev'$url, ( $paged ) );
        }

        
// Make sure to use index.php when needed, done after paged == 2 check so the prev links to homepage will not have index.php erroneously.
        
if ( is_front_page() ) {
            
$url WPSEO_Sitemaps_Router::get_base_url'' );
        }

        if ( 
$paged ) {
            
$this->adjacent_rel_link'prev'$url, ( $paged ) );
        }

        if ( 
$paged $GLOBALS['wp_query']->max_num_pages ) {
            
$this->adjacent_rel_link'next'$url, ( $paged ) );
        }
    }

    
/**
     * Get adjacent pages link for archives.
     *
     * @since 1.0.2
     * @since 7.1    Added $query_arg parameter for single post/page pagination.
     *
     * @param string $rel       Link relationship, prev or next.
     * @param string $url       The un-paginated URL of the current archive.
     * @param string $page      The page number to add on to $url for the $link tag.
     * @param string $query_arg Optional. The argument to use to set for the page to load.
     *
     * @return void
     */
    
private function adjacent_rel_link$rel$url$page$query_arg 'paged' ) {
        global 
$wp_rewrite;
        if ( ! 
$wp_rewrite->using_permalinks() ) {
            if ( 
$page ) {
                
$url add_query_arg$query_arg$page$url );
            }
        }
        else {
            if ( 
$page ) {
                
$url user_trailingslashittrailingslashit$url ) . $this->get_pagination_base() . $page );
            }
        }

        
/**
         * Filter: 'wpseo_adjacent_rel_url' - Allow changing the URL for rel output by Yoast SEO.
         *
         * @api string $url The URL that's going to be output for $rel.
         *
         * @param string $rel Link relationship, prev or next.
         */
        
$url apply_filters'wpseo_adjacent_rel_url'$url$rel );

        
/**
         * Filter: 'wpseo_' . $rel . '_rel_link' - Allow changing link rel output by Yoast SEO.
         *
         * @api string $unsigned The full `<link` element.
         */
        
$link apply_filters'wpseo_' $rel '_rel_link''<link rel="' esc_attr$rel ) . '" href="' esc_url$url ) . "\" />\n" );

        if ( 
is_string$link ) && $link !== '' ) {
            echo 
$link;
        }
    }

    
/**
     * Return the base for pagination.
     *
     * @return string The pagination base.
     */
    
private function get_pagination_base() {
        
// If the current page is the frontpage, pagination should use /base/.
        
$base '';
        if ( ! 
is_singular() || WPSEO_Frontend_Page_Type::is_home_static_page() ) {
            
$base trailingslashit$GLOBALS['wp_rewrite']->pagination_base );
        }
        return 
$base;
    }

    
/**
     * Outputs the meta description element or returns the description text.
     *
     * @param bool $echo Echo or return output flag.
     *
     * @return string
     */
    
public function metadesc$echo true ) {
        if ( 
is_null$this->metadesc ) ) {
            
$this->generate_metadesc();
        }

        if ( 
$echo === false ) {
            return 
$this->metadesc;
        }

        if ( 
is_string$this->metadesc ) && $this->metadesc !== '' ) {
            echo 
'<meta name="description" content="'esc_attrwp_strip_all_tagsstripslashes$this->metadesc ) ) ), '"/>'"\n";
            return 
'';
        }

        if ( 
current_user_can'wpseo_manage_options' ) && is_singular() ) {
            echo 
'<!-- ';
            
printf(
                
/* Translators: %1$s resolves to the SEO menu item, %2$s resolves to the Search Appearance submenu item. */
                
esc_html__'Admin only notice: this page does not show a meta description because it does not have one, either write it for this page specifically or go into the [%1$s - %2$s] menu and set up a template.''wordpress-seo' ),
                
esc_html__'SEO''wordpress-seo' ),
                
esc_html__'Search Appearance''wordpress-seo' )
            );
            echo 
' -->' "\n";
        }
    }

    
/**
     * Generates the meta description text.
     */
    
private function generate_metadesc() {
        global 
$post$wp_query;

        
$metadesc          '';
        
$metadesc_override false;
        
$post_type         '';
        
$template          '';

        if ( 
is_object$post ) && ( isset( $post->post_type ) && $post->post_type !== '' ) ) {
            
$post_type $post->post_type;
        }

        if ( 
$this->woocommerce_shop_page->is_shop_page() ) {
            
$post      get_post$this->woocommerce_shop_page->get_shop_page_id() );
            
$post_type $this->get_queried_post_type();

            if ( ( 
$metadesc === '' && $post_type !== '' ) && WPSEO_Options::get'metadesc-ptarchive-' $post_type'' ) !== '' ) {
                
$template WPSEO_Options::get'metadesc-ptarchive-' $post_type );
                
$term     $post;
            }
            
$metadesc_override $this->get_seo_meta_value'metadesc'$post->ID );
        }
        elseif ( 
WPSEO_Frontend_Page_Type::is_simple_page() ) {
            
$post      get_postWPSEO_Frontend_Page_Type::get_simple_page_id() );
            
$post_type = isset( $post->post_type ) ? $post->post_type '';

            if ( ( 
$metadesc === '' && $post_type !== '' ) && WPSEO_Options::get'metadesc-' $post_type'' ) !== '' ) {
                
$template WPSEO_Options::get'metadesc-' $post_type );
                
$term     $post;
            }

            if ( 
is_object$post ) ) {
                
$metadesc_override $this->get_seo_meta_value'metadesc'$post->ID );
            }
        }
        else {
            if ( 
is_search() ) {
                
$metadesc '';
            }
            elseif ( 
WPSEO_Frontend_Page_Type::is_home_posts_page() ) {
                
$template WPSEO_Options::get'metadesc-home-wpseo' );
                
$term     = array();

                if ( empty( 
$template ) ) {
                    
$template get_bloginfo'description' );
                }
            }
            elseif ( 
WPSEO_Frontend_Page_Type::is_home_static_page() ) {
                
$metadesc $this->get_seo_meta_value'metadesc' );
                if ( ( 
$metadesc === '' && $post_type !== '' ) && WPSEO_Options::get'metadesc-' $post_type'' ) !== '' ) {
                    
$template WPSEO_Options::get'metadesc-' $post_type );
                }
            }
            elseif ( 
is_category() || is_tag() || is_tax() ) {
                
$term              $wp_query->get_queried_object();
                
$metadesc_override WPSEO_Taxonomy_Meta::get_term_meta$term$term->taxonomy'desc' );
                if ( 
is_object$term ) && isset( $term->taxonomy ) && WPSEO_Options::get'metadesc-tax-' $term->taxonomy'' ) !== '' ) {
                    
$template WPSEO_Options::get'metadesc-tax-' $term->taxonomy );
                }
            }
            elseif ( 
is_author() ) {
                
$author_id get_query_var'author' );
                
$metadesc  get_the_author_meta'wpseo_metadesc'$author_id );
                if ( ( ! 
is_string$metadesc ) || $metadesc === '' ) && WPSEO_Options::get'metadesc-author-wpseo''' ) !== '' ) {
                    
$template WPSEO_Options::get'metadesc-author-wpseo' );
                }
            }
            elseif ( 
is_post_type_archive() ) {
                
$post_type $this->get_queried_post_type();
                if ( 
WPSEO_Options::get'metadesc-ptarchive-' $post_type'' ) !== '' ) {
                    
$template WPSEO_Options::get'metadesc-ptarchive-' $post_type );
                }
            }
            elseif ( 
is_archive() ) {
                
$template WPSEO_Options::get'metadesc-archive-wpseo' );
            }

            
// If we're on a paginated page, and the template doesn't change for paginated pages, bail.
            
if ( ( ! is_string$metadesc ) || $metadesc === '' ) && get_query_var'paged' ) && get_query_var'paged' ) > && $template !== '' ) {
                if ( 
strpos$template'%%page' ) === false ) {
                    
$metadesc '';
                }
            }
        }

        
$post_data $post;

        if ( 
is_string$metadesc_override ) && '' !== $metadesc_override ) {
            
$metadesc $metadesc_override;
            if ( isset( 
$term ) ) {
                
$post_data $term;
            }
        }
        elseif ( ( ! 
is_string$metadesc ) || '' === $metadesc ) && '' !== $template ) {
            if ( ! isset( 
$term ) ) {
                
$term $wp_query->get_queried_object();
            }

            
$metadesc  $template;
            
$post_data $term;
        }

        
$metadesc $this->replace_vars$metadesc$post_data );

        
/**
         * Filter: 'wpseo_metadesc' - Allow changing the Yoast SEO meta description sentence.
         *
         * @api string $metadesc The description sentence.
         */
        
$this->metadesc apply_filters'wpseo_metadesc'trim$metadesc ) );
    }

    
/**
     * Based on the redirect meta value, this function determines whether it should redirect the current post / page.
     *
     * @return boolean
     */
    
public function page_redirect() {
        if ( 
is_singular() ) {
            global 
$post;
            if ( ! isset( 
$post ) || ! is_object$post ) ) {
                return 
false;
            }

            
$redir $this->get_seo_meta_value'redirect'$post->ID );
            if ( 
$redir !== '' ) {
                
header'X-Redirect-By: Yoast SEO' );
                
wp_redirect$redir301'Yoast SEO' );
                exit;
            }
        }

        return 
false;
    }

    
/**
     * Outputs noindex values for the current page.
     */
    
public function noindex_page() {
        
remove_action'wpseo_head', array( $this'canonical' ), 20 );
        echo 
'<meta name="robots" content="noindex" />'"\n";
    }

    
/**
     * Send a Robots HTTP header preventing URL from being indexed in the search results while allowing search engines
     * to follow the links in the object at the URL.
     *
     * @since 1.1.7
     * @return boolean Boolean indicating whether the noindex header was sent.
     */
    
public function noindex_feed() {

        if ( ( 
is_feed() || is_robots() ) && headers_sent() === false ) {
            
header'X-Robots-Tag: noindex, follow'true );

            return 
true;
        }

        return 
false;
    }

    
/**
     * Adds rel="nofollow" to a link, only used for login / registration links.
     *
     * @param string $input The link element as a string.
     *
     * @return string
     */
    
public function nofollow_link$input ) {
        return 
str_replace'<a ''<a rel="nofollow" '$input );
    }

    
/**
     * When certain archives are disabled, this redirects those to the homepage.
     *
     * @return boolean False when no redirect was triggered.
     */
    
public function archive_redirect() {
        global 
$wp_query;

        if (
            ( 
WPSEO_Options::get'disable-date'false ) && $wp_query->is_date ) ||
            ( 
WPSEO_Options::get'disable-author'false ) && $wp_query->is_author ) ||
            ( 
WPSEO_Options::get'disable-post_format'false ) && $wp_query->is_tax'post_format' ) )
        ) {
            
$this->redirectget_bloginfo'url' ), 301 );

            return 
true;
        }

        return 
false;
    }

    
/**
     * If the option to disable attachment URLs is checked, this performs the redirect to the attachment.
     *
     * @return bool Returns succes status.
     */
    
public function attachment_redirect() {
        if ( 
WPSEO_Options::get'disable-attachment'false ) === false ) {
            return 
false;
        }
        if ( ! 
is_attachment() ) {
            return 
false;
        }

        
/**
         * Allow the developer to change the target redirection URL for attachments.
         *
         * @api   string $attachment_url The attachment URL for the queried object.
         * @api   object $queried_object The queried object.
         *
         * @since 7.5.3
         */
        
$url apply_filters'wpseo_attachment_redirect_url'wp_get_attachment_urlget_queried_object_id() ), get_queried_object() );


        if ( ! empty( 
$url ) ) {
            
$this->do_attachment_redirect$url );

            return 
true;
        }

        return 
false;
    }

    
/**
     * Performs the redirect from the attachment page to the image file itself.
     *
     * @param string $attachment_url The attachment image url.
     *
     * @return void
     */
    
public function do_attachment_redirect$attachment_url ) {
        
header'X-Redirect-By: Yoast SEO' );
        
wp_redirect$attachment_url301'Yoast SEO' );
        exit;
    }

    
/**
     * Replaces the possible RSS variables with their actual values.
     *
     * @param string $content The RSS content that should have the variables replaced.
     *
     * @return string
     */
    
public function rss_replace_vars$content ) {
        global 
$post;

        
/**
         * Allow the developer to determine whether or not to follow the links in the bits Yoast SEO adds to the RSS feed, defaults to true.
         *
         * @api   bool $unsigned Whether or not to follow the links in RSS feed, defaults to true.
         *
         * @since 1.4.20
         */
        
$no_follow      apply_filters'nofollow_rss_links'true );
        
$no_follow_attr '';
        if ( 
$no_follow === true ) {
            
$no_follow_attr 'rel="nofollow" ';
        }

        
$author_link '';
        if ( 
is_object$post ) ) {
            
$author_link '<a ' $no_follow_attr 'href="' esc_urlget_author_posts_url$post->post_author ) ) . '">' esc_htmlget_the_author() ) . '</a>';
        }

        
$post_link      '<a ' $no_follow_attr 'href="' esc_urlget_permalink() ) . '">' esc_htmlget_the_title() ) . '</a>';
        
$blog_link      '<a ' $no_follow_attr 'href="' esc_urlget_bloginfo'url' ) ) . '">' esc_htmlget_bloginfo'name' ) ) . '</a>';
        
$blog_desc_link '<a ' $no_follow_attr 'href="' esc_urlget_bloginfo'url' ) ) . '">' esc_htmlget_bloginfo'name' ) ) . ' - ' esc_htmlget_bloginfo'description' ) ) . '</a>';

        
$content stripslashestrim$content ) );
        
$content str_replace'%%AUTHORLINK%%'$author_link$content );
        
$content str_replace'%%POSTLINK%%'$post_link$content );
        
$content str_replace'%%BLOGLINK%%'$blog_link$content );
        
$content str_replace'%%BLOGDESCLINK%%'$blog_desc_link$content );

        return 
$content;
    }

    
/**
     * Adds the RSS footer (or header) to the full RSS feed item.
     *
     * @param string $content Feed item content.
     *
     * @return string
     */
    
public function embed_rssfooter$content ) {
        return 
$this->embed_rss$content'full' );
    }

    
/**
     * Adds the RSS footer (or header) to the excerpt RSS feed item.
     *
     * @param string $content Feed item excerpt.
     *
     * @return string
     */
    
public function embed_rssfooter_excerpt$content ) {
        return 
$this->embed_rss$content'excerpt' );
    }

    
/**
     * Adds the RSS footer and/or header to an RSS feed item.
     *
     * @since 1.4.14
     *
     * @param string $content Feed item content.
     * @param string $context Feed item context, either 'excerpt' or 'full'.
     *
     * @return string
     */
    
public function embed_rss$content$context 'full' ) {

        
/**
         * Filter: 'wpseo_include_rss_footer' - Allow the RSS footer to be dynamically shown/hidden.
         *
         * @api boolean $show_embed Indicates if the RSS footer should be shown or not.
         *
         * @param string $context The context of the RSS content - 'full' or 'excerpt'.
         */
        
if ( ! apply_filters'wpseo_include_rss_footer'true$context ) ) {
            return 
$content;
        }

        if ( 
is_feed() ) {
            
$before '';
            
$after  '';

            if ( 
WPSEO_Options::get'rssbefore''' ) !== '' ) {
                
$before wpautop$this->rss_replace_varsWPSEO_Options::get'rssbefore' ) ) );
            }
            if ( 
WPSEO_Options::get'rssafter''' ) !== '' ) {
                
$after wpautop$this->rss_replace_varsWPSEO_Options::get'rssafter' ) ) );
            }
            if ( 
$before !== '' || $after !== '' ) {
                if ( ( isset( 
$context ) && $context === 'excerpt' ) && trim$content ) !== '' ) {
                    
$content wpautop$content );
                }
                
$content $before $content $after;
            }
        }

        return 
$content;
    }

    
/**
     * Used in the force rewrite functionality this retrieves the output, replaces the title with the proper SEO
     * title and then flushes the output.
     */
    
public function flush_cache() {

        global 
$wp_query;

        if ( 
$this->ob_started !== true ) {
            return 
false;
        }

        
$content ob_get_clean();

        
$old_wp_query $wp_query;

        
wp_reset_query();

        
// Only replace the debug marker when it is hooked.
        
if ( $this->show_debug_marker() ) {
            
$title      $this->title'' );
            
$debug_mark $this->get_debug_mark();

            
/*
             * Find all titles, strip them out and add the new one in within the debug marker,
             * so it's easily identified whether a site uses force rewrite.
             */
            
$content preg_replace'/<title.*?\/title>/i'''$content );
            
$content str_replace$debug_mark$debug_mark "\n" '<title>' esc_html$title ) . '</title>'$content );
        }

        
$GLOBALS['wp_query'] = $old_wp_query;

        echo 
$content;

        return 
true;
    }

    
/**
     * Starts the output buffer so it can later be fixed by flush_cache().
     */
    
public function force_rewrite_output_buffer() {
        
$this->ob_started true;
        
ob_start();
    }

    
/**
     * Get the product name in the head section.
     *
     * @return string
     */
    
private function head_product_name() {
        if ( 
$this->is_premium() ) {
            return 
'Yoast SEO Premium plugin';
        }

        return 
'Yoast SEO plugin';
    }

    
/**
     * Check if this plugin is the premium version of WPSEO.
     *
     * @return bool
     */
    
protected function is_premium() {
        return 
WPSEO_Utils::is_yoast_seo_premium();
    }

    
/**
     * Check if term archive query is for multiple terms (/term-1,term2/ or /term-1+term-2/).
     *
     * @return bool
     */
    
protected function is_multiple_terms_query() {

        global 
$wp_query;

        if ( ! 
is_tax() && ! is_tag() && ! is_category() ) {
            return 
false;
        }

        
$term          get_queried_object();
        
$queried_terms $wp_query->tax_query->queried_terms;

        if ( empty( 
$queried_terms$term->taxonomy ]['terms'] ) ) {
            return 
false;
        }

        return 
count$queried_terms$term->taxonomy ]['terms'] ) > 1;
    }

    
/**
     * Wraps wp_safe_redirect to allow testing for redirects.
     *
     * @param string $location The path to redirect to.
     * @param int    $status   Status code to use.
     */
    
public function redirect$location$status 302 ) {
        
header'X-Redirect-By: Yoast SEO' );
        
wp_safe_redirect$location$status'Yoast SEO' );
        exit;
    }

    
/**
     * Checks if the debug mark action has been added.
     *
     * @return bool True when the action exists.
     */
    
protected function show_debug_marker() {
        return 
has_action'wpseo_head', array( $this'debug_mark' ) ) !== false;
    }

    
/**
     * Shows the closing debug mark.
     *
     * @return string The closing debug mark comment.
     */
    
protected function show_closing_debug_mark() {
        if ( ! 
$this->show_debug_marker() ) {
            return 
'';
        }

        return 
sprintf(
            
"<!-- / %s. -->\n\n",
            
esc_html$this->head_product_name() )
        );
    }

    
/**
     * Builds the title for a post type archive.
     *
     * @param string $separator          The title separator.
     * @param string $separator_location The location of the title separator.
     *
     * @return string The title to use on a post type archive.
     */
    
protected function get_post_type_archive_title$separator$separator_location ) {
        
$post_type $this->get_queried_post_type();

        
$title $this->get_title_from_options'title-ptarchive-' $post_type );

        if ( ! 
is_string$title ) || '' === $title ) {
            
$post_type_obj get_post_type_object$post_type );
            
$title_part    '';

            if ( isset( 
$post_type_obj->labels->menu_name ) ) {
                
$title_part $post_type_obj->labels->menu_name;
            }
            elseif ( isset( 
$post_type_obj->name ) ) {
                
$title_part $post_type_obj->name;
            }

            
$title $this->get_default_title$separator$separator_location$title_part );
        }

        return 
$title;
    }

    
/**
     * Retrieves the WooCommerce title.
     *
     * @return string The WooCommerce title.
     */
    
protected function get_woocommerce_title() {
        
$shop_page_id $this->woocommerce_shop_page->get_shop_page_id();
        
$post         get_post$shop_page_id );
        
$title        $this->get_seo_title$post );

        if ( 
is_string$title ) && $title !== '' ) {
            return 
$title;
        }

        if ( 
$shop_page_id !== -&& is_archive() ) {
            
$title $this->get_template'title-' $post->post_type );
            
$title $this->replace_vars$title$post );
        }

        return 
$title;
    }

    
/**
     * Retrieves a template from the options.
     *
     * @param string $template The template to retrieve.
     *
     * @return string The set template.
     */
    
protected function get_template$template ) {
        return 
WPSEO_Options::get$template );
    }

    
/**
     * Retrieves the queried post type.
     *
     * @return string The queried post type.
     */
    
protected function get_queried_post_type() {
        
$post_type get_query_var'post_type' );
        if ( 
is_array$post_type ) ) {
            
$post_type reset$post_type );
        }

        return 
$post_type;
    }

    
/**
     * Retrieves the SEO Meta value for the supplied key and optional post.
     *
     * @param string $key     The key to retrieve.
     * @param int    $post_id Optional. The post to retrieve the key for.
     *
     * @return string Meta value.
     */
    
protected function get_seo_meta_value$key$post_id ) {
        return 
WPSEO_Meta::get_value$key$post_id );
    }

    
/**
     * Replaces the dynamic variables in a string.
     *
     * @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 The replaced string.
     */
    
protected function replace_vars$string$args$omit = array() ) {
        
$replacer = new WPSEO_Replace_Vars();

        return 
$replacer->replace$string$args$omit );
    }

    
/**
     * Adds shortcode support to category descriptions.
     *
     * @param string $desc String to add shortcodes in.
     *
     * @return string Content with shortcodes filtered out.
     */
    
public function custom_category_descriptions_add_shortcode_support$desc ) {
        
// Wrap in output buffering to prevent shortcodes that echo stuff instead of return from breaking things.
        
ob_start();
        
$desc do_shortcode$desc );
        
ob_end_clean();
        return 
$desc;
    }

    
/* ********************* DEPRECATED METHODS ********************* */

    /**
     * Outputs the meta keywords element.
     *
     * @deprecated 6.3
     * @codeCoverageIgnore
     *
     * @return void
     */
    
public function metakeywords() {
        if ( 
function_exists'wp_get_current_user' ) && current_user_can'manage_options' ) ) {
            
_deprecated_function'WPSEO_Frontend::metakeywords''6.3' );
        }
    }

    
/**
     * Removes unneeded query variables from the URL.
     *
     * @deprecated 7.0
     * @codeCoverageIgnore
     *
     * @return void
     */
    
public function clean_permalink() {
        
// As this is a frontend method, we want to make sure it is not displayed for non-logged in users.
        
if ( function_exists'wp_get_current_user' ) && current_user_can'manage_options' ) ) {
            
_deprecated_function'WPSEO_Frontend::clean_permalink''7.0' );
        }
    }

    
/**
     * Trailing slashes for everything except is_single().
     *
     * @deprecated 7.0
     * @codeCoverageIgnore
     */
    
public function add_trailingslash() {
        
// As this is a frontend method, we want to make sure it is not displayed for non-logged in users.
        
if ( function_exists'wp_get_current_user' ) && current_user_can'manage_options' ) ) {
            
_deprecated_function'WPSEO_Frontend::add_trailingslash''7.0'null );
        }
    }

    
/**
     * Removes the ?replytocom variable from the link, replacing it with a #comment-<number> anchor.
     *
     * @deprecated 7.0
     * @codeCoverageIgnore
     *
     * @param string $link The comment link as a string.
     *
     * @return string The modified link.
     */
    
public function remove_reply_to_com$link ) {
        
_deprecated_function'WPSEO_Frontend::remove_reply_to_com''7.0''WPSEO_Remove_Reply_To_Com::remove_reply_to_com' );

        
$remove_replytocom = new WPSEO_Remove_Reply_To_Com();
        return 
$remove_replytocom->remove_reply_to_com$link );
    }

    
/**
     * Redirects out the ?replytocom variables.
     *
     * @deprecated 7.0
     * @codeCoverageIgnore
     *
     * @return boolean True when redirect has been done.
     */
    
public function replytocom_redirect() {
        
_deprecated_function'WPSEO_Frontend::replytocom_redirect''7.0''WPSEO_Remove_Reply_To_Com::replytocom_redirect' );

        
$remove_replytocom = new WPSEO_Remove_Reply_To_Com();
        return 
$remove_replytocom->replytocom_redirect();
    }

    
/**
     * Determine whether this is the homepage and shows posts.
     *
     * @deprecated 7.7
     * @codeCoverageIgnore
     *
     * @return bool Whether or not the current page is the homepage that displays posts.
     */
    
public function is_home_posts_page() {
        
_deprecated_function__FUNCTION__'7.7''WPSEO_Frontend_Page_Type::is_home_posts_page' );

        return 
WPSEO_Frontend_Page_Type::is_home_posts_page();
    }

    
/**
     * Determine whether the this is the static frontpage.
     *
     * @deprecated 7.7
     * @codeCoverageIgnore
     *
     * @return bool Whether or not the current page is a static frontpage.
     */
    
public function is_home_static_page() {
        
_deprecated_function__FUNCTION__'7.7''WPSEO_Frontend_Page_Type::is_home_static_page' );

        return 
WPSEO_Frontend_Page_Type::is_home_static_page();
    }

    
/**
     * Determine whether this is the posts page, when it's not the frontpage.
     *
     * @deprecated 7.7
     * @codeCoverageIgnore
     *
     * @return bool Whether or not it's a non-frontpage, posts page.
     */
    
public function is_posts_page() {
        
_deprecated_function__FUNCTION__'7.7''WPSEO_Frontend_Page_Type::is_posts_page' );

        return 
WPSEO_Frontend_Page_Type::is_posts_page();
    }

    
/**
     * Function used in testing whether the title should be force rewritten or not.
     *
     * @deprecated 9.6
     * @codeCoverageIgnore
     *
     * @param string $title Title string.
     *
     * @return string
     */
    
public function title_test_helper$title ) {
        
_deprecated_function__METHOD__'WPSEO 9.6' );

        return 
$title;
    }

    
/**
     * Output the rel=publisher code on every page of the site.
     *
     * @deprecated 10.1.3
     * @codeCoverageIgnore
     *
     * @return boolean Boolean indicating whether the publisher link was printed.
     */
    
public function publisher() {
        
_deprecated_function__METHOD__'WPSEO 10.1.3' );

        return 
false;
    }
}