Skip to content

Commit

Permalink
chore: fix constant case
Browse files Browse the repository at this point in the history
  • Loading branch information
HardeepAsrani committed Jan 11, 2024
1 parent d546b83 commit 4913d3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,9 @@ function quickwp_block_styles() {

add_action( 'init', 'quickwp_block_styles' );


define( 'QUICKWP_URL', trailingslashit( get_template_directory_uri() ) );
if ( ! defined( 'QUICKWP_URL' ) ) {
define( 'QUICKWP_URL', trailingslashit( get_template_directory_uri() ) );
}

/**
* Enqueue block stylesheets.
Expand Down
2 changes: 1 addition & 1 deletion patterns/feature-columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$quickwp_strings = apply_filters( 'quickwp_strings', array() );

$images = array(
QuickWP_URL . 'assets/img/qwp-img-02.webp',
QUICKWP_URL . 'assets/img/qwp-img-02.webp',
);
?>

Expand Down

0 comments on commit 4913d3b

Please sign in to comment.