Local Clicks Doctor Academy
Name(Required)
How do you login to a Wordpress website?(Required)
Here is some lines of HTML and the CSS that goes along with it:
<div id="logo main-logo">
<img src="logo.png" alt="website logo" />
</section>

#logo#main-logo{
width: 100px;
display: left;
float: center;
}
Max. file size: 256 MB.
Fix the following PHP code:
<?php
    foreach( $main_array as $item ):
    $thumb = wp_get_attachment_src(
    $slide['mts_custom_slider_image'], '');

    <div class="main-slider__item"> <img src="<?php echo $thumb; ?>" />
        <h3 class="main-slider__subtitle"><? php echo $main_array['mts_custom_slider_text']; ?></h3>
            <a href="<?php echo $item['mts_custom_slider_link']; ?>" class="btn"> <?php echo $item['mts_custom_slider_button_name']; ?> </a>
    </div>
<?php } ?>
Max. file size: 256 MB.