mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
19 lines
292 B
Text
19 lines
292 B
Text
<?php
|
|
function your_prefix_astra_color_palettes() {
|
|
|
|
$color_palettes = array(
|
|
'#ffffff',
|
|
'#f6f7f8',
|
|
'#222222',
|
|
'#666666',
|
|
'#000000',
|
|
'#000000',
|
|
'#000000',
|
|
'#000000',
|
|
);
|
|
|
|
return $color_palettes;
|
|
}
|
|
|
|
add_filter( 'astra_color_palettes', 'your_prefix_astra_color_palettes' );
|
|
?>
|