Reusable Custom Blocks

Custom Query Loop Block

<?php /** ** Block Name: Query Loop Block **/ $posttype = $attributes[‘post-type’]; $category = $attributes[‘category’]; $tags = $attributes[‘tags’]; ?> <style> .display_querybox { display: flex !important; } .wp-block-lazyblock-query-loop-block{ position:relative; } .query_all_box{ display: flex; align-items: center; margin-bottom: 60px; position:relative; } .as-img{ width: 450px; height: 263px; margin-bottom: -10px; object-fit: cover; } .query-content{ padding-left: 60px; } .query-content h2{ margin:0; […]

Reusable Custom Blocks

Custom Post Type Gallery Slider

Add ACF field Add Lazyblock <style> .slider{ display: flex; overflow:hidden; } .slider .slick-track { display: flex; gap: 13px; } .slider .slick-track .slick-slide.slick-current{ margin-left:-13px; } .slider .slick-track .slick-slide.slick-active:last-child{ margin-right:-13px; } .slider .slick-slide{ height: 175px !important; width: 200px; background:var(–wp–preset–color–tertiary) !important; align-items: center; display: flex; justify-content: center; } .slider .slide img{ height:100%; width:100%; object-fit:cover; } @media all and […]