Über Web, Tech, Games, Art,
Musik, Code & Design

LazyBlocks Snippets

if/else

{{#compare layout "===" "bild-link"}}
... 
{{/compare}}


{{#if control_name}}
  <p>The value is True</p>
{{else}}
  <p>The value is False</p>
{{/if}}Code-Sprache: PHP (php)

Control Name

$attributes['control_name']Code-Sprache: PHP (php)

Gallery

<?php 
 
 foreach( $attributes['logos'] as $image ) :
    ?>
    <div class="item">
        <img src="<?php echo get_template_directory_uri(); ?>/inc/timthumb.php?src=<?php echo esc_url( $image['url']); ?>&w=600" loading="lazy"></a>   
    </div>

 <?php endforeach; ?>Code-Sprache: HTML, XML (xml)