mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-16 16:43:42 +03:00
9 lines
300 B
PHP
9 lines
300 B
PHP
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\Miscellaneous;
|
|
|
|
add_action( 'after_setup_theme', function () {
|
|
// These alternate versions don't exist for this subsite, so the links would just lead to 404 errors.
|
|
remove_action( 'wp_head', 'WordPressdotorg\Theme\hreflang_link_attributes' );
|
|
} );
|