Hi there! I’ve got a soft reject, and I’d like to clarify the reviewer issue remark.
No image placeholders, if user doesn’t want an image, nothing should display. Theme still needs to work properly without them. Example(s): Markup 2021-11-09 at 15.22.39.png - Droplr
What I’ve understood, the problem is that, if user remove image which it uses like background of the block, the block crushed.
Q1: What exactly should to do?
Q2: Can I use image placeholder from https://placeholder.com/ for replacing instead?
My code is next:
<section
class="hero-widget wow fadeIn"
style="background-image: url(<?php echo esc_url(ale_get_option('blog_cover')); ?>)">
<div class="wrapper">
<!-- Left block -->
<div class="left-block">
<!-- Hero text box -->
<div class="hero-text-box">
<h2 class="hero-title font_one"><?php echo esc_attr(the_title()); ?></h2>
<?php if(ale_limit_excerpt(8)) : ?>
<div class="hero-subtitle font_one"><?php echo ale_limit_excerpt(8); ?></div>
<?php endif; ?>
</div>
<!-- Hero bread crumbs -->
<div class="hero-bread-crumbs">
<ul class="breadcrumbs-list font_one">
<li>
<a href="<?php echo esc_url(home_url("/")); ?>">
<?php echo esc_attr(ale_get_option('brand_text')); ?>
</a>
</li>
<li class="font_two">/</li>
<li>
<span class="is-active">
<?php echo esc_attr(the_title()); ?>
</span>
</li>
</ul>
</div>
</div>
</div>
</section>