shell bypass 403
<?php
$icon_meta = get_post_meta(get_the_ID(), 'motiox_service_icon', true);
?>
<article class="service service-<?php the_ID(); ?> service-style-2">
<div class="service-content">
<?php if (!empty($icon_meta)) : ?>
<div class="entry-icon">
<?php
if (is_numeric($icon_meta)) {
echo wp_get_attachment_image($icon_meta, 'motiox-service-small');
} else {
?>
<img src="<?php echo esc_url($icon_meta); ?>" alt="<?php echo esc_attr(the_title()); ?>" />
<?php } ?>
</div>
<?php endif; ?>
<?php the_title('<h3 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h3>'); ?>
<div class="entry-bottom">
<div class="excerpt-content"><?php echo wp_trim_words(get_the_excerpt(), 35); ?></div>
<div class="entry-btn-wrapper">
<a class="entry-btn more-link-hover" href="<?php the_permalink() ?>"><?php esc_html_e('Learn more', 'motiox'); ?></a>
<a class="entry-btn more-link" href="<?php the_permalink() ?>"><?php esc_html_e('Learn more', 'motiox'); ?></a>
</div>
</div>
</div>
</article>