Skip to content

Instantly share code, notes, and snippets.

@seothemes
Last active June 23, 2023 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seothemes/964682b2244381c328763922fe1513c3 to your computer and use it in GitHub Desktop.
Save seothemes/964682b2244381c328763922fe1513c3 to your computer and use it in GitHub Desktop.
Enable link color in classic themes
<?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