HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.30.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 11 06:42:00 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/www/wp-content/themes/morenews/inc/hooks/hook-full-width-upper-footer.php
<?php

/**
 * Front page section additions.
 */


if (!function_exists('morenews_full_width_upper_footer_section')) :
    /**
     *
     * @since MoreNews 1.0.0
     *
     * @param null
     * @return null
     *
     */
    function morenews_full_width_upper_footer_section()
    {



        ?>

        <section class="aft-blocks above-footer-widget-section">
            <?php

            if (1 == morenews_get_option('frontpage_show_latest_posts')) {
                morenews_get_block('latest');
            }

            ?>
        </section>
        <?php

    }
endif;
add_action('morenews_action_full_width_upper_footer_section', 'morenews_full_width_upper_footer_section');