Skip to content

Commit

Permalink
fixed - misnamed vars
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed Jun 6, 2024
1 parent f2b6243 commit ebdf788
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@
<h2 class="title"><?php echo esc_html( $block_title ); ?></h2>
<div class="text"><?php echo wp_kses_post( $copy ); ?></div>
<?php
var_dump( $block_link );
if ( ! empty( $block_link ) ) {
$url = $link['url'];
$calculator_title = $link['title'];
$url = $block_link['url'];
$calculator_title = $block_link['title'];
if ( $link['url'] ) {
echo '<span class="content">';
echo '<a href="' . esc_url( $url ) . '" class="btn btn-dark-bg">';
Expand Down

0 comments on commit ebdf788

Please sign in to comment.