Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created April 7, 2021 12:27
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 billerickson/18893e9a8cb827b656914b87a368e616 to your computer and use it in GitHub Desktop.
Save billerickson/18893e9a8cb827b656914b87a368e616 to your computer and use it in GitHub Desktop.
<?php
// -- Editor Color Palette
$primary_color = get_option( 'options_be_primary_color', '#24509A' );
add_theme_support(
'editor-color-palette',
[
[
'name' => __( 'Primary', 'cultivate_textdomain' ),
'slug' => 'primary',
'color' => $primary_color,
],
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment