Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Created December 4, 2015 16:32
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 anonymous/316a5518a2026ccad8cc to your computer and use it in GitHub Desktop.
Save anonymous/316a5518a2026ccad8cc to your computer and use it in GitHub Desktop.
<?php // diesen Code direkt oberhalb des </head> Tags in die header.php einfügen
$content_text_color = get_option('content_text_color');
$content_link_color = get_option('content_link_color');
?>
<style>
#content { color: <?php echo $content_text_color; ?>; }
#content a { color: <?php echo $content_link_color; ?>; }
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment