Skip to content

Commit

Permalink
[ Bug Fix ][ CSS Customize ] Fixed an issue where CSS customizations …
Browse files Browse the repository at this point in the history
…were not applied on single page.
  • Loading branch information
kurudrive committed Nov 13, 2024
1 parent 89eedfb commit caa9b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/css-customize/css-customize-single.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function veu_css_customize_single_load_edit() {
/* ------------------------------------------------ */
function veu_insert_custom_css() {

if ( is_singular() || is_admin() ) {
if ( is_singular() || ( is_admin() && isset( $_GET['post'] ) ) ) {
global $post;
$css = veu_get_the_custom_css_single( $post );
if ( $css ) {
Expand Down

0 comments on commit caa9b7e

Please sign in to comment.