Hi, I have added extra widgets just for images in footer of child theme, and registered them in functions.php, however when adding images only one is showing, extra code in footer is below
<div class=”widget-wrap”>
<div class=”container”>
<div class=”column-area column-fourth clearfix”>
<div class=”column-item”>
<?php
// Calling the footer column 1 sidebar
dynamic_sidebar( ‘image-1-widget-area’ );
?>
</div><!– .column-item –>
<div class=”column-item”>
<?php
// Calling the footer column 2 sidebar
dynamic_sidebar( ‘image-2-widget-area’ );
?>
</div><!– .column-item –>
<div class=”column-item clearfix-half”>
<?php
// Calling the footer column 3 sidebar
dynamic_sidebar( ‘image-3-widget-area’ );
?>
</div><!– .column-item –>
<div class=”column-item clearfix-third”>
<?php
// Calling the footer column 4 sidebar
dynamic_sidebar( ‘image-4-widget-area’ );
?>
</div><!– .column-item –>
</div><!– .widget-area –>
</div><!– .container –>
</div><!– .widget-wrap –>
Which is put immediately below closing page content div. I am not using business template, just the default one.
Any idea why they are not showing (the other 3) ?
Check at https://webmobapps.com`
Many Thanks