Last active
June 23, 2023 04:59
-
-
Save seothemes/964682b2244381c328763922fe1513c3 to your computer and use it in GitHub Desktop.
Enable link color in classic themes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'wp_theme_json_data_theme', function ( $theme_json ) { | |
$theme_json->update_with( array_merge( | |
$theme_json->get_data(), | |
[ | |
'settings' => [ | |
'color' => [ | |
'link' => true, | |
], | |
], | |
], | |
) ); | |
return $theme_json; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment