|
14 | 14 | remove_action( 'wp_head', 'wp_shortlink_wp_head', 10 );
|
15 | 15 | remove_action( 'template_redirect', 'wp_shortlink_header', 11 );
|
16 | 16 |
|
| 17 | +// Ensure relative links remain on the current protocol |
| 18 | +// (such as references to theme assets and intra-site links). |
| 19 | +// This does not influence 'home' and 'siteurl' options, and thus |
| 20 | +// does not affect <link rel=canonical> and sitemap output. |
| 21 | +if ( @$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https' ) { |
| 22 | + $_SERVER['HTTPS'] = '1'; |
| 23 | +} elseif ( @$_SERVER['HTTP_X_FORWARDED_PROTO'] == 'http' ) { |
| 24 | + $_SERVER['HTTPS'] = '0'; |
| 25 | +} |
| 26 | + |
17 | 27 | /**
|
18 |
| - * Add rel=canonical on singular pages (API pages, and blog posts) |
| 28 | + * Add rel=me link to HTML head for Mastodon domain verification |
| 29 | + * |
| 30 | + * Usage: |
| 31 | + * |
| 32 | + * Put one or more comma-separated URLs in the 'jquery_xfn_rel_me' WordPress option. |
| 33 | + * |
| 34 | + * Example: |
| 35 | + * |
| 36 | + * 'jquery_xfn_rel_me' => 'https://example.org/@foo,https://social.example/@bar' |
19 | 37 | *
|
20 |
| - * Derived from WordPress 6.3.1 rel_canonical: |
| 38 | + * See also: |
21 | 39 | *
|
22 |
| - * - Avoid applying esc_url and its 'clean_url' filter so that |
23 |
| - * 'https://' is not stripped, and thus the URL is actually canonical. |
| 40 | + * - https://docs.joinmastodon.org/user/profile/#verification |
| 41 | + * - https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/me |
| 42 | + * - https://microformats.org/wiki/rel-me |
| 43 | + * - https://gmpg.org/xfn/ |
24 | 44 | */
|
25 |
| -function jq_rel_canonical() { |
26 |
| - if ( !is_singular() ) { |
27 |
| - return; |
28 |
| - } |
29 |
| - $id = get_queried_object_id(); |
30 |
| - if ( $id === 0 ) { |
31 |
| - return; |
32 |
| - } |
33 |
| - |
34 |
| - $url = wp_get_canonical_url( $id ); |
35 |
| - if ( $url) { |
36 |
| - echo '<link rel="canonical" href="' . esc_attr( $url ) . '" />' . "\n"; |
37 |
| - } |
38 |
| -} |
39 |
| -remove_action( 'wp_head', 'rel_canonical' ); |
40 |
| -add_action( 'wp_head', 'jq_rel_canonical' ); |
41 |
| - |
42 |
| -// Add rel=me link to HTML head for Mastodon domain verification |
43 |
| -// |
44 |
| -// Usage: |
45 |
| -// |
46 |
| -// Put one or more comma-separated URLs in the 'jquery_xfn_rel_me' WordPress option. |
47 |
| -// |
48 |
| -// Example: |
49 |
| -// |
50 |
| -// 'jquery_xfn_rel_me' => 'https://example.org/@foo,https://social.example/@bar' |
51 |
| -// |
52 |
| -// See also: |
53 |
| -// |
54 |
| -// - https://docs.joinmastodon.org/user/profile/#verification |
55 |
| -// - https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel/me |
56 |
| -// - https://microformats.org/wiki/rel-me |
57 |
| -// - https://gmpg.org/xfn/ |
58 | 45 | function jquery_xfnrelme_wp_head() {
|
59 | 46 | $option = get_option( 'jquery_xfn_rel_me' , '' );
|
60 | 47 | $links = $option !== '' ? explode( ',', $option ) : array();
|
|
0 commit comments